buraksezer / consistent

Consistent hashing with bounded loads in Golang
https://research.googleblog.com/2017/04/consistent-hashing-with-bounded-loads.html
MIT License
693 stars 69 forks source link

ReplicationFactor can now be equal to 1. Adding documentation. #27

Closed akram closed 12 months ago

akram commented 12 months ago

This fixes some documentation quirks to try to put them in a more correct english. I am not native neither, so please feel free to discuss that.

This also allows the ReplicationFactor to be set to 1 for users who don't want replication but only distribution.

buraksezer commented 12 months ago

Hello,

Thank you for your interest.

This also allows the ReplicationFactor to be set to 1 for users who don't want replication but only distribution.

This modification is useless and unnecessary. This library implements a consistent hashing function, not a key/value store. Replication is required for even key distribution.