hashring/README.md

44 lines
764 B
Markdown
Raw Normal View History

2016-08-15 22:21:22 +08:00
# hashring
2016-08-15 22:52:09 +08:00
A golang consistent hashring
Install
===
go get github.com/g4zhuj/hashring
Usage
===
```
// virtualSpots means virtual spots created by each node
2018-04-09 11:34:07 +08:00
nodeWeight := make(map[string]int)
nodeWeight["node1"] = 1
nodeWeight["node2"] = 1
nodeWeight["node3"] = 2
vitualSpots := 100
hash := NewHashRing(virtualSpots)
2016-08-15 22:52:09 +08:00
2018-04-09 11:34:07 +08:00
//add nodes
hash.AddNodes(nodeWeight)
2016-08-15 22:52:09 +08:00
2018-04-09 11:34:07 +08:00
//remove node
hash.RemoveNode("node3")
2016-08-15 22:52:09 +08:00
2018-04-09 11:34:07 +08:00
//add node
hash.AddNode("node3", 3)
2016-08-15 22:52:09 +08:00
2018-04-09 11:34:07 +08:00
//get key's node
node := hash.GetNode("key")
2016-08-15 22:52:09 +08:00
2020-02-15 22:26:47 +08:00
```
坑点:
// 一个9064767行的文件 每行做hashring结果不一致 原因hashBytes只取4位 529和83 一致 ,这个库是一对多的关系,非多对一
// node=1000 vitualSpots=20000
//9063340 key=49f57cf0 node=529
//9063340 key=49f57cf0 node=83