consistent_hash

为什么需要一致性hash

算法的理解

http://en.wikipedia.org/wiki/Consistent_hashing

具体实现及应用

Dubbo中一致性Hash的实现:com.alibaba.dubbo.rpc.cluster.loadbalance.ConsistentHashLoadBalance

Motan中一致性Hash的实现:com.weibo.api.motan.cluster.loadbalance.ConsistentHashLoadBalance

Guava中一致性Hash实现:com.google.common.hash.Hashing.consistentHash(*)