0
我想緩存元素只在磁盤存儲不在內存/內存中,因爲我已經使用了以下配置,它將元素存儲在磁盤上,但它不會過期/從磁盤中刪除數據後5分鐘。ehcache沒有過期元素從磁盤存儲
<diskStore path="/global-cache" />
<cache name="globalCache"
maxElementsInMemory="0"
eternal="true"
timeToIdleSeconds="0"
diskSpoolBufferSizeMB="1"
diskPersistent="true"
timeToLiveSeconds="300"
diskExpiryThreadIntervalSeconds="120"
overflowToDisk="true"
memoryStoreEvictionPolicy="LFU" />
我可以在ehcache配置中做什麼,它會在指定的時間後過期磁盤存儲元素?