0

我的 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"
/>

是否需要做一些事情来配置堆外内存。

4

1 回答 1

0

Ehcache 2.x 仅作为商业功能提供堆外支持。然而, Ehcache 3.x将其作为开源版本的一部分提供。

于 2017-10-13T09:03:00.907 回答