Миграция с net .sf.ehcache-1.6.2 на ehcache 3.8.1 - PullRequest
0 голосов
/ 02 марта 2020

Я мигрирую с com.springsource.net.sf.ehcache-1.6.2.jar на

    <!-- https://mvnrepository.com/artifact/org.ehcache/ehcache -->
    <dependency>
        <groupId>org.ehcache</groupId>
        <artifactId>ehcache</artifactId>
        <version>3.8.1</version>
    </dependency>

В частности, мне нужно перенести следующий параметр конфигурации:

<defaultCache
    maxElementsInMemory="10000"
    eternal="false"
    timeToIdleSeconds="86400"
    timeToLiveSeconds="86400"
    overflowToDisk="true" />

Пока у меня есть это:

<cache-template name="defaultCache">
    <expiry>
        <ttl>86400</ttl>
    </expiry>
    <resources>
        <heap>10000</heap>
    </resources>
</cache-template>

Как перенести настройки eternal, timeToIdleSeconds и overflowToDisk?

...