1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* 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

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"