标签:
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); }
标签:
原文地址:http://www.cnblogs.com/daxin/p/4289928.html