* reduce web-datasource cache to 12 hours (so that daily-updated data (e.g. TheTVDB) won't be an issue anymore)

This commit is contained in:
Reinhard Pointner 2015-10-16 14:33:22 +00:00
parent 1f6d16d8b9
commit 6cc2c20377
1 changed files with 3 additions and 3 deletions

View File

@ -19,14 +19,14 @@
/> />
<!-- <!--
Short-lived (24 hours) persistent disk cache for web responses Short-lived (12 hours) persistent disk cache for web responses
--> -->
<cache name="web-datasource" <cache name="web-datasource"
maxElementsInMemory="200" maxElementsInMemory="200"
maxElementsOnDisk="80000" maxElementsOnDisk="80000"
eternal="false" eternal="false"
timeToIdleSeconds="86400" timeToIdleSeconds="43200"
timeToLiveSeconds="86400" timeToLiveSeconds="43200"
overflowToDisk="true" overflowToDisk="true"
diskPersistent="true" diskPersistent="true"
memoryStoreEvictionPolicy="LRU" memoryStoreEvictionPolicy="LRU"