08:52:52 GMT Good afternoon! Help me, please, I'm doing "redis-cli KEYS what:im:looking:for | xargs --verbose redis-cli ZRANGE 0 -1" but the actual executed command is "ZRANGE 0 -1 what:im:looking:for" how to swap the arguments? 09:00:12 GMT I found a solution, "redis-cli KEYS what:im:looking:for | xargs --verbose -I % redis-cli ZRANGE % 0 -1" 09:00:26 GMT -I % 11:14:18 GMT hello everyone 11:15:19 GMT anyone able to help me for a sec? 11:29:04 GMT anyone able to help me with some resp stuff? 15:13:54 GMT redis is still single core right? 15:16:38 GMT yes, but you can launch multiple instances if needed, to use all cores 15:18:19 GMT devster31 yeah but in my use case it would be idea of redis would support multi threading then i could launch one instead of 24 but thx 15:18:36 GMT Hey, I had a quick question. Is it possible to have a nested data structure in Redis? I need a hash where the values are sets. If it is possible, how exactly would one create this structure? 15:20:41 GMT hawk_: it's not possible 15:21:58 GMT okay, thanks ahfeel_ 15:36:39 GMT ahfeel_: that was an awful lot of letters to say "no" :D 15:40:12 GMT minus: yes 15:40:14 GMT :))) 16:36:59 GMT should I do pipeline sync after every slowlog commands ? 16:37:47 GMT I am doing two zunionstore and 1 zinterstore and 1 zrange with a pipiline then I sync 16:37:55 GMT then met 16:37:56 GMT mget 16:38:08 GMT it takes too much time and I am trying to reduce the timings 16:38:48 GMT I increased the number of shards from 6 to 24 which bumped the perf too 21:37:28 GMT I have some application that requires redis. I wanted to setup redis in elasticache. I'm curious about HA. It doesn't seem like my application can know about multiple redis instances. 21:38:13 GMT If I setup a master with 2 read slaves.. do I point my application to the master? what happens if the master goes down? when leader election happens does the master FQDN dynamically change to an elected slave by elasticache? 21:38:21 GMT or should I not bother with HA, and just have 1 node