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