* reduce TheTVDB/OpenSubtitles cache timeout to 24 hours (instead of 2 days)

This commit is contained in:
Reinhard Pointner 2015-10-12 09:50:03 +00:00
parent 735008eb99
commit 8e1f837fd0
1 changed files with 3 additions and 3 deletions

View File

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