如何清除特定的缓存区域:ehcache

时间:2013-07-11 18:34:07

标签: ehcache

我有如下的ehcache配置:

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<cache
name="reg1"
maxElementsInMemory="100000"
eternal="false"
overflowToDisk="true"
timeToLiveSeconds="1">
</cache>
<cache
name="reg2"
maxElementsInMemory="1000000"
eternal="false"
overflowToDisk="true"
timeToLiveSeconds="100"/>
</ehcache>

我无法弄清楚如何清除&#34; reg1&#34;。 我已经看到了一种清除所有区域但不是特定区域的方法。 任何想出如何做到这一点的人,请分享。

由于

1 个答案:

答案 0 :(得分:1)

来自Ehcache文档:

http://ehcache.org/apidocs/2.4.4/net/sf/ehcache/Cache.html#removeAll()

删除所有缓存的项目。