码迷,mamicode.com
首页 > 系统相关 > 详细

Ehcache BlockingCache 源码分析

时间:2015-02-13 11:34:27      阅读:334      评论:0      收藏:0      [点我收藏+]

标签:

BlockingCache是对Ehcache进行的扩展,BlockingCache内置了读写锁,不需要用户显示调用。

要彻底分析BlockingCache的原理,需要首先来看一下它内部用到的一些类。

public interface CacheLockProvider {

    /**
     * Gets the Sync Stripe to use for a given key.
     * <p/>
     * This lookup must always return the same Sync for a given key.
     * <p/>
     * @param key the key
     * @return one of a limited number of Sync‘s.
     */
    Sync getSyncForKey(Object key);
}

 

Ehcache BlockingCache 源码分析

标签:

原文地址:http://www.cnblogs.com/daxin/p/4289928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!