Results 19 comments of Arseniy Pavlenko

What OS you are using? And where is your redis server, on remote host or on local machine?

If you use a linux like system there is no need to use multi() due of driver async behaviour...

You are right but not when you use `hiredis async lib` in the cluster mode... Whole bulk of received data is processed by each redis instance, so no other process...

I am sorry, have no time to check it against cluster driver, could you please check it? In your project directory go to `node_modules/redis-cluster/node_modules` delete a `redis-fast-driver` folder and make...

Ok, no problem, I`ll do it tomorrow

There is no solution in JS for utf-8 multibyte crc16...

Try this test: assert.equal(crc.crc16(new Buffer('123456789')).toString(16), '31c3'); assert.equal(crc.crc16(new Buffer('привет')) % 16384, 7365); assert.equal(crc.crc16(new Buffer('nht.reach.accounts:زووم')) % 16384, 4107); I checked 5 JS libraries and all checked libs doing it wrong... check issue...

Ok, I'll try to fix it   Arseniy Pavlenko | CTO M. +972-54-5417509 scrnz.com On Fri, Jan 23, 2015 at 1:32 PM, João Jerónimo [email protected] wrote: > ## I understand that,...

I think problem at "personId", try "personId.toString()" please

Very strange, can you please provide more code, how you init redis-cluster etc... And what OS you are using?