Skip to content

Instantly share code, notes, and snippets.

@happy-tao
happy-tao / ConsistentHash.java
Created April 26, 2018 08:44 — forked from meigesir/ConsistentHash.java
一致性hash算法的实现。
import java.util.ArrayList;
import java.util.Collection;
import java.util.SortedMap;
import java.util.TreeMap;
import org.apache.commons.lang.RandomStringUtils;
import com.google.common.base.Charsets;
import com.google.common.hash.HashFunction;
import com.google.common.hash.Hashing;