* 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:
parent
1f6d16d8b9
commit
6cc2c20377
|
@ -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"
|
||||||
|
|
Loading…
Reference in New Issue