08:40:28 GMT Is is possible to use the INCR command on values in a list? 09:28:50 GMT safinn: list elements are immutable - they can only be added or removed. Lists are also a bad choice for accessing anything besides the head or tail. A Hash makes more sense if you want to keep counters together. 12:46:26 GMT What is the best way to setup redis cluster on AWS ? Vagrant images, docker or something else. 15:43:04 GMT can you use the INCR command on certain values in a list? 20:58:41 GMT hi, please when i want to use pub/sub in node.js app instances and i publish some message to channel, then i get it in that source node.js app instance too, but i want to read only other instances. and vice versa. please how can i do it? 21:12:59 GMT does redis support do not publish message back to publisher? 21:32:47 GMT you can't publish on a connection you're subscribed on (and thus no vice versa either), so it never publishes back the the sender anyway 22:05:20 GMT minus: i mean, i had to create one connection to publisher and second to subscriber, when it can't pub/sub on the same connection...but i am getting what i sent...like echo :(, it is sent to others but to me either