1
나는 Grails 3.1.8을 사용한다. timeToLiveSeconds 속성을 어떻게 설정할 수 있습니까?grails 3 캐시 - ehcache 설정
grails.cache.config = {
cache {
…
}
defaultCache {
maxElementsInMemory 10000
eternal false
timeToIdleSeconds 120
timeToLiveSeconds 120
overflowToDisk true
maxElementsOnDisk 10000000
diskPersistent false
diskExpiryThreadIntervalSeconds 120
memoryStoreEvictionPolicy 'LRU'
}
}
을하지만 나를 위해 작동하지 않습니다
플러그인 구성 suggests me을 설정합니다. 기본 및 맞춤 속성을 어떻게 설정합니까?