我有如下的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;。 我已经看到了一种清除所有区域但不是特定区域的方法。 任何想出如何做到这一点的人,请分享。
由于
答案 0 :(得分:1)