04:45:43 GMT https://github.com/fastio/pedis eh??? (someone seems to be attempting a c++ rewrite of redis) 09:54:31 GMT How to use hash tags in a redis cluster ? 09:55:27 GMT I am using ioredis node js client to connect to a redis cluster and I need to perform multi & pipeline operations 16:05:38 GMT redis hash table is a chained one, right? 16:18:40 GMT what do you mean by chained? 16:22:11 GMT there are chained hash tables, open address ones, and so on 16:41:10 GMT oh, no idea what they're implemented as 16:57:30 GMT hey there, I have a data set of around ~10MB and has around 4000 keys. a common operation I have is to loop over all values and calculate some data. I tried naively to do this with HSET and HGETALL but HGETALL is taking >1s. Is this expected with redis? Or is there a better way to represent my data