03:40:35 GMT are different databases handled in different threads? 08:43:10 GMT cornfeedhobo: no 18:29:10 GMT I can't bind ReJSON as module with my config at Redis 3.2.1. Config line: loadmodule /var/redis/rejson.so ERR: Bad directive or wrong number of arguments 18:50:32 GMT hey guys 18:51:05 GMT I setup a REDIS server on AWS and when I connect to it It seems to work, but when i try and type a command I get a connection reset by peer 19:16:13 GMT Send us your config 20:19:39 GMT Is there an upgrade process to follow when I'm moving between redis 2.7 to redis 3.x/4 ? 20:20:17 GMT I'll be moving from 2.8.20 to 3.2.11 20:23:44 GMT Also could someone tell me a stable version for hiredis to use? 20:24:04 GMT is 13.3 good enough? I'll be upgrading from 0.11 20:24:31 GMT Use the latest release version 20:24:39 GMT I've used it in several production grade products. 20:28:54 GMT @Necrosand: I don't want to go to redis 4.0, not battle tested yet. Hiredis 13.3 should be fine. Is there a problem with downgrade/upgrade with using the old rdb files if the customer upgrades/downgrades the redis db? 20:29:09 GMT i.e. downgrade/upgrade between 2.8.20 and 3.2.11 20:29:27 GMT I was only talking about hiredis 20:30:35 GMT ok 20:30:50 GMT Any idea about upgrading/downgrading redis ? 20:30:55 GMT I don't know if you will be able to downgrade, I am pretty sure you can upgrade using the rdb's though. 20:31:02 GMT Definitely test it out and verify your data integrity. 20:31:56 GMT thanks.. yeah, trying it out. Just wondering if I need to give some obvious upgrade scripts to the end user 20:33:19 GMT https://github.com/antirez/redis/issues/3218 should give you a bit more insight 20:37:12 GMT @Necrosand: Thanks a ton. That answered my queries. 20:37:36 GMT No problem. May your Redis performance always be quick! 20:41:08 GMT anybody here using redis-cluster with kubernetes? was following along with https://github.com/kelseyhightower/kubernetes-redis-cluster, changed the gce storage to emptyDir: {}'s 20:42:01 GMT but when running the redis-trib create --replicas 1 step, I provide the cluster ip's defined in the service, but they also come back with ip's used by the host directly 20:42:22 GMT so a mix between 172.*.*.* and 10.*.*.* addresses 20:42:31 GMT which leaves redis-cli commands (testing the cluster), failing 22:23:21 GMT Hello ! I wonder if this is possible to tell a redis cluster to store hash slot on every node without splitting them by range ? 22:24:09 GMT because while reading the doc it says that for 3 redis cluster machine, one get 1/3 of the hash slot, the second get 1/3 and the third get 1/3 too 22:24:26 GMT is it possible to make available the data for each node ? 22:24:46 GMT thanks for any hint 22:26:26 GMT or the redis cluster didnt provide a way to put data on every node / 22:26:28 GMT ? 23:31:33 GMT how does one benchmark hmset? 23:44:45 GMT cornfeedhobo: using redis-benchmark? 23:48:05 GMT yeah i think i figured it out now 23:49:02 GMT minus: is it possible to write multiple fields and combine with another test, like lpush or zadd? 23:50:22 GMT they're all limited to one command afaik, but you might be able to modify the code 23:50:51 GMT okay. thanks!