本文整理汇总了Java中lucee.commons.io.cache.CacheEntry.getValue方法的典型用法代码示例。如果您正苦于以下问题:Java CacheEntry.getValue方法的具体用法?Java CacheEntry.getValue怎么用?Java CacheEntry.getValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lucee.commons.io.cache.CacheEntry
的用法示例。
在下文中一共展示了CacheEntry.getValue方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: clear
import lucee.commons.io.cache.CacheEntry; //导入方法依赖的package包/类
public static void clear(PageContext pc, Cache cache, CacheHandlerFilter filter) {
try{
Iterator<CacheEntry> it = cache.entries().iterator();
CacheEntry ce;
Object obj;
while(it.hasNext()){
ce = it.next();
if(filter==null) {
cache.remove(ce.getKey());
continue;
}
obj=ce.getValue();
if(obj instanceof QueryCacheItem)
obj=((QueryCacheItem)obj).getQuery();
if(filter.accept(obj))
cache.remove(ce.getKey());
}
}
catch (IOException e) {}
}
示例2: accept
import lucee.commons.io.cache.CacheEntry; //导入方法依赖的package包/类
@Override
public boolean accept(CacheEntry ce) {
Object val = ce.getValue();
if(val instanceof QueryResultCacheItem) {
String[] _tags = ((QueryResultCacheItem)val).getTags();
if(_tags!=null) {
for(String tag:_tags) {
if(sct.containsKey(tag)) {
return true;
}
}
}
}
return false;
}
示例3: getValue
import lucee.commons.io.cache.CacheEntry; //导入方法依赖的package包/类
@Override
public Object getValue(String key, Object defaultValue) {
CacheEntry ce = getCacheEntry(key,null);
if(ce!=null) return ce.getValue();
return defaultValue;
}
示例4: getValue
import lucee.commons.io.cache.CacheEntry; //导入方法依赖的package包/类
@Override
public Object getValue(String key, Object defaultValue) {
CacheEntry entry = getCacheEntry(key,null);
if(entry==null) return defaultValue;
return entry.getValue();
}