Pastry - 分布式哈希表


MIT
Linux
Google Go

软件简介

Pastry 是 Go 语言编写的一个分布式哈希表,Pastry 使用 OS X 10.8.1, Go 1.0.3 开发,但经过验证支持 Ubuntu
12.04 LTS (64-bit), Go 1.0.3.

Pastry
让​​服务器成为集群的自组织。这意味着服务器可以彼此之间发送消息,而不需要中央枢纽,没有单点故障。服务器,称为节点,可以简单地宣布自己的存在,并与其余各组开始传递消息。

示例代码:

hostname, err := os.Hostname()
if err != nil {
panic(err.Error())
}
id, err := pastry.NodeIDFromBytes([]byte(hostname+” test server”))
if err != nil {
panic(err.Error())
}
node := pastry.NewNode(id, “your_local_ip_address”, “your_global_ip_address”,
“your_region”, 8080)