本文整理汇总了Java中org.apache.commons.collections.LRUMap类的典型用法代码示例。如果您正苦于以下问题:Java LRUMap类的具体用法?Java LRUMap怎么用?Java LRUMap使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LRUMap类属于org.apache.commons.collections包,在下文中一共展示了LRUMap类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: ProxyDirContext
import org.apache.commons.collections.LRUMap; //导入依赖的package包/类
/**
* Builds a proxy directory context using the given environment.
*/
public ProxyDirContext(Hashtable env, DirContext dirContext) {
this.env = env;
this.dirContext = dirContext;
if (dirContext instanceof BaseDirContext) {
// Initialize parameters based on the associated dir context, like
// the caching policy.
if (((BaseDirContext) dirContext).isCached()) {
cache = Collections.synchronizedMap(new LRUMap(cacheSize));
cacheTTL = ((BaseDirContext) dirContext).getCacheTTL();
cacheObjectMaxSize =
((BaseDirContext) dirContext).getCacheObjectMaxSize();
}
}
hostName = (String) env.get(HOST);
contextName = (String) env.get(CONTEXT);
}
示例2: SoftHashMap
import org.apache.commons.collections.LRUMap; //导入依赖的package包/类
/**
* Construct a new hash map with the specified size
*
* @param hardSize the maximum capacity of this map
*/
public SoftHashMap(final int hardSize)
{
hash = new HashMap();
hardCacheMap = new LRUMap(hardSize);
queue = new ReferenceQueue();
}
示例3: init
import org.apache.commons.collections.LRUMap; //导入依赖的package包/类
private void init() {
cache = new LRUMap( strongReferenceCount );
}
示例4: init
import org.apache.commons.collections.LRUMap; //导入依赖的package包/类
private void init() {
strongReferenceCache = new LRUMap( strongReferenceCount );
}