15:28:40 GMT hi, quick question, is it possible to have redis write to an included file on CONFIG WRITE? 15:30:15 GMT didn't know redis supports includes 15:30:57 GMT looks like it doesn't 15:32:53 GMT meh 15:33:12 GMT so there is some bad interaction between using the sentinel and having config management 15:33:43 GMT there are several 'unless'es here 15:34:06 GMT yeah know what you mean :/ 15:34:36 GMT but lineinfile might bet me there 15:34:40 GMT cluster stores its config in a separate file, that was solved better 15:34:57 GMT I don't need cluster I think 15:35:26 GMT i'd just go with overriding all config files (redis and sentinels) if i have a change 15:35:30 GMT I want 3 nodes to be a (possible) master, sentinel and sa bunch of slaves local to the client 19:51:22 GMT I'm using Redis for it's pub/sub capabilities and at the beginning of an application I subscribe to a specific channel that should only see specific "keep alive" messages. Whenever I put the Redis cluster under pressure, by creating a lot of subscriptions and sending a lot of messages, the original channel I subscribed to always sees an error like: ERR Protocol error: invalid bulk length, ERR Protocol error: invalid multibulk l 19:51:50 GMT Does anyone have ideas as to why this could be happening? 20:35:28 GMT *sigh* hello 20:37:11 GMT quick question. suppose I want to limit redis's memory usage, but have the OS take care of swapping. is this possible? or will redis actively try to be "smart" and refuse to store data that exceeds available memory? 21:00:05 GMT you can set the memory limit for redis, otherwise it'll consume memory until it gets killed. it'll get swapped like other programs. at least that's what i assume, can't really guarantee what i said is correct 21:04:44 GMT minus_: the configuration seems to imply that if I use a "no eviction" memory policy redis will start erroring once it hits the memory limit. 21:05:43 GMT yes, but that assumes you have a memory limit set 21:06:00 GMT so you're saying I should set an rlimit instead and let redis assume it has all available memory? 21:06:09 GMT i guess it will also error if it can't alloc memory from the OS, but at that point something's pretty sure to crash 21:06:39 GMT no, use redis' max-memory config option 21:20:21 GMT This isn't necessarily a Redis question but I'm using Jedis and I cannot figure out if the JedisPubSub class is meant to be used as a singleton, or should I create a new JedisPubSub object for every new subscription. Does anyone know the proper usage?