
缓存
aigoleague
宅男,技术上还有很大的欠缺
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
一致性hash算法
from http://blog.youkuaiyun.com/sparkliang/article/details/5279393?reload 一致性hash算法(consistenthashing) consistent hashing算法早在1997年就在论文Consistenthashing and random trees中被提出,目前在cache系统中应用越来越广泛; 1基本场景 比转载 2013-02-28 16:34:05 · 483 阅读 · 0 评论 -
Java中的Enum的使用与分析
示例: public enum EnumTest { FRANK("The given name of me"), LIU("The family name of me"); private String context; private String getContext(){ return this.context;转载 2013-08-26 21:09:20 · 459 阅读 · 0 评论