05:29:58 GMT Hi guys! Any suggestions on the best service for redis hosting? 08:25:16 GMT hey guys 08:28:19 GMT I have written *4\r\n$4\r\nzadd\r\n$5\r\nacset\r\n$1\r\n0\r\n$20\r\nFriedChickenPancakes\r\n*4\r\n$4\r\nzadd... 08:28:47 GMT if I only do only the first array as input for pipe it executes fine 08:29:01 GMT but if I have multiple arrays as above... it fails with unknown command . 08:29:06 GMT have you guys run into that before? 08:39:46 GMT should it be *8 in the beginning 08:39:52 GMT if doing two zadd commands 08:40:00 GMT they have 4 fields ... 08:40:16 GMT zadd key value data 08:52:43 GMT figured it out .. i had two \n after each array 09:12:02 GMT why do you build that by hand? 10:57:29 GMT let you redis client do it for you :D 14:22:12 GMT How do list the content of a set with key XYZ in redis-cli? 14:23:36 GMT https://redis.io/commands/smembers 14:32:35 GMT badboy_: ahhh nice. Is it possible to update content with a list of values? 14:33:06 GMT commands are all documented: https://redis.io/commands#set 14:37:49 GMT badboy_: yeah but they do not show any examples for multiple values. For example this does not work : SADD mykey [val1,val2] 14:38:06 GMT sadd mykey val1 val2 14:38:13 GMT Redis is pretty simple in that regard 15:25:13 GMT hello 18:03:59 GMT Is it possible to increase the maxmemory of a live redis instance? 18:04:03 GMT Without downtime? 18:14:09 GMT danemacmillan: config set maxmemory 18:14:30 GMT And it will automatically start using the availabl memory? 18:14:50 GMT that'll change the limit, but not write it to the config 18:16:26 GMT Alright, but at least while it's running it will immediately start to consume more memory? 18:17:09 GMT yes 18:17:47 GMT does redis writing and reading binary data? 18:17:59 GMT or must values always be encoded as strings? 18:18:15 GMT i seem to be able to use binary data for the most part, but occasionally data seems to be corrupted 18:18:44 GMT crobbins: redis is completely binary-safe 18:19:05 GMT might be your client doing funny things 18:19:09 GMT possibly 18:19:19 GMT thanks minus 18:19:34 GMT is there any documentation specifying this? 18:19:55 GMT probably 18:20:04 GMT Jedis occasionally adds a few random bytes in front of the binary data. If truncated, it works 18:20:05 GMT i'd look at the protocol docs 18:20:13 GMT yup got it now