我有一个 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”。我已经看到了一种清除所有但不是特定区域的方法。有谁知道怎么做的,请分享。
谢谢