我的 Ehcache(2.10.4) 默认使用堆内存很多,那么配置堆外内存的过程是什么?
EHCache Config 相同:
<defaultCache
maxElementsInMemory="8000"
maxElementsOnDisk="10000"
eternal="false"
timeToIdleSeconds="3600"
timeToLiveSeconds="3600"
overflowToDisk="true"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU"
/>
是否需要做一些事情来配置堆外内存。