标签:
groupcache 是一个缓存系统,开始应用在Google 下载站点dl.google.com,后来也使用在Google Blogger 和 Google Code 这些更改频率较低的系统中。
一. groupcache 使用
1.创建本地httppool,并添加对等节点,httppool是一个分布式节点管理器,用来选取集群中的某个节点
local_addr = “http://127.0.0.1:8001”
peers := groupcache.NewHTTPPool("http://" + local_addr)
peers_addrs = []string{"http://127.0.0.1:8001", "http://127.0.0.1:8002", "http://127.0.0.1:8003"}
peers.Set(peers_addrs...)
标签:
原文地址:http://www.cnblogs.com/B0-1/p/5799094.html