growing
发布时间:2016-06-05 11:53:33
源码地址:http://www.codeproject.com/Articles/56138/Consistent-hashing本文对链接中源码进行剖析。先来看看对元素的定义:struct node_s{ char iden[64]; /* 每个缓存结点的名字或者信息 */ u_int replicas; /* 缓存结点的.........【阅读全文】
发布时间:2016-05-24 22:10:17
void _Dijkstra(int src, W* dist, int* path, bool* vSet, int size, const W& maxValue) { // // 1.dist初始化src到其他顶点的的距离 .........【阅读全文】
发布时间:2016-05-24 21:47:21
注:redis不区分大小写一、基本1.set. del. get. exits. type.2.INCR key. INCRBY key increment DECR key. DECRBY key increment. INCRBYFLOAT key increment.3.append key value.4.strlen key.5.MGET key1 key2 MSET ke.........【阅读全文】
发布时间:2016-05-22 14:48:32
实现代码:template<class V,class E> struct LinkEdge{ LinkEdge(int srcIndex = - 1,int dstIndex = -1,const E&weight = E()) :_srcIndex(srcIndex) &nb.........【阅读全文】