本文整理了Java中net.sf.ehcache.Cache.isElementOnDisk()
方法的一些代码示例,展示了Cache.isElementOnDisk()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Cache.isElementOnDisk()
方法的具体详情如下:
包路径:net.sf.ehcache.Cache
类名称:Cache
方法名:isElementOnDisk
[英]Whether an Element is stored in the cache on Disk, indicating a higher cost of retrieval.
Since no assertions are made about the state of the Element it is possible that the Element is expired, but this method still returns true.
[中]元素是否存储在磁盘缓存中,表示检索成本较高。
由于没有关于元素状态的断言,因此元素可能已过期,但此方法仍然返回true。
代码示例来源:origin: net.sf.ehcache/ehcache
/**
* Whether an Element is stored in the cache on Disk, indicating a higher cost of retrieval.
* <p>
* Since no assertions are made about the state of the Element it is possible that the
* Element is expired, but this method still returns true.
*
* @param key key to look for
* @return true if an element matching the key is found in the diskStore
*/
public final boolean isElementOnDisk(Serializable key) {
return isElementOnDisk((Object) key);
}
代码示例来源:origin: org.sonatype.nexus.bundles/org.sonatype.nexus.bundles.ehcache
/**
* Whether an Element is stored in the cache on Disk, indicating a higher cost of retrieval.
* <p>
* Since no assertions are made about the state of the Element it is possible that the
* Element is expired, but this method still returns true.
*
* @return true if an element matching the key is found in the diskStore
*/
public final boolean isElementOnDisk(Serializable key) {
return isElementOnDisk((Object) key);
}
代码示例来源:origin: net.sf.ehcache.internal/ehcache-core
/**
* Whether an Element is stored in the cache on Disk, indicating a higher cost of retrieval.
* <p>
* Since no assertions are made about the state of the Element it is possible that the
* Element is expired, but this method still returns true.
*
* @param key key to look for
* @return true if an element matching the key is found in the diskStore
*/
public final boolean isElementOnDisk(Serializable key) {
return isElementOnDisk((Object) key);
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.ehcache
/**
* Whether an Element is stored in the cache on Disk, indicating a higher cost of retrieval.
* <p>
* Since no assertions are made about the state of the Element it is possible that the
* Element is expired, but this method still returns true.
*
* @return true if an element matching the key is found in the diskStore
*/
public final boolean isElementOnDisk(Serializable key) {
return isElementOnDisk((Object) key);
}
内容来源于网络,如有侵权,请联系作者删除!