0

我有一个 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>

我无法弄清楚如何才能清除“reg1”。我已经看到了一种清除所有但不是特定区域的方法。有谁知道怎么做的,请分享。

谢谢

4

1 回答 1

1

来自 Ehcache 文档:

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

删除所有缓存的项目。

于 2014-01-31T03:28:24.220 回答