
Cache
youchangrui
这个作者很懒,什么都没留下…
展开
-
XMemcached集成
参考文档:https://code.google.com/p/xmemcached/wiki/User_Guide_zh 1:下载xmemcached-1.4.2-bin-with-dependencies.tar.gzhttps://code.google.com/p/xmemcached/downloads/list解压文件,将其中的slf4j-api-1.7.5....原创 2013-10-15 16:38:13 · 168 阅读 · 0 评论 -
Jedis+SpringDataRedis+Spring
1:所需jar:jedis-2.1.0.jar:https://github.com/xetorthio/jedis https://github.com/xetorthio/jedis/downloadsspring-data-redis-1.1.9.RELEASE.jar:http://projects.spring.io/spring-data-redis/2:属性文件:...原创 2013-10-24 14:10:54 · 104 阅读 · 0 评论 -
spymemcached集成
1:官方地址:https://code.google.com/p/spymemcached/downloads/list2:放入https://spymemcached.googlecode.com/files/spymemcached-2.9.1.jar 到lib目录下3:加入spring配置文件applicationContext-spymemcached.xml:<?...原创 2013-10-30 14:37:31 · 161 阅读 · 0 评论 -
LRUCache
package com.alibaba.dubbo.common.utils; import java.util.LinkedHashMap;import java.util.concurrent.locks.Lock;import java.util.concurrent.locks.ReentrantLock; public class LRUCache<K, ...原创 2015-08-10 10:28:15 · 131 阅读 · 0 评论