debasishg / scala-redis

A scala library for connecting to a redis server, or a cluster of redis nodes using consistent hashing on the client side.
1.02k stars 219 forks source link

Use CRC-16 for cluster hashing #259

Open Ray1988 opened 4 years ago

Ray1988 commented 4 years ago

Redis is using CRC-16 for node lookup, but this library is using CRC-32 which doesn't compatible with other Redis clients such as iorreids I'm using when inserting the key. I wonder how can I walk around this issue?

thanks