Skip to content
Snippets Groups Projects
Commit 85542a6f authored by srosse's avatar srosse
Browse files

Merge OpenOLAT 10.2 to OpenOLAT default branch with 41ccd3376595f94a0a9d55f1e1e038c89f8e506d

parents 24ef7950 9d4106c8
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,36 @@ ...@@ -11,6 +11,36 @@
<jmxStatistics enabled="true"/> <jmxStatistics enabled="true"/>
</default> </default>
<!-- Hibernate caches -->
<namedCache name="local-query">
<locking isolationLevel="READ_COMMITTED" concurrencyLevel="1000" lockAcquisitionTimeout="15000" useLockStriping="false"/>
<eviction maxEntries="10000" strategy="LRU"/>
<expiration maxIdle="100000" wakeUpInterval="5000"/>
<transaction transactionMode="NON_TRANSACTIONAL" />
</namedCache>
<namedCache name="timestamps">
<!--
<clustering mode="replication">
<async/>
</clustering>
-->
<locking isolationLevel="READ_COMMITTED" concurrencyLevel="1000" lockAcquisitionTimeout="15000" useLockStriping="false"/>
<!-- Don't ever evict modification timestamps -->
<eviction strategy="NONE"/>
<expiration wakeUpInterval="0"/>
<!-- Explicitly non transactional -->
<transaction transactionMode="NON_TRANSACTIONAL"/>
<!-- State transfer forces all replication calls to be synchronous,
so for calls to remain async, use a cluster cache loader instead -->
<persistence passivation="false">
<!--
<cluster remoteCallTimeout="20000" />
-->
</persistence>
</namedCache>
<!-- Our own caches -->
<namedCache name="MapperService@mapper"> <namedCache name="MapperService@mapper">
<locking isolationLevel="READ_COMMITTED" concurrencyLevel="1000" lockAcquisitionTimeout="15000" useLockStriping="false"/> <locking isolationLevel="READ_COMMITTED" concurrencyLevel="1000" lockAcquisitionTimeout="15000" useLockStriping="false"/>
<eviction maxEntries="1000" strategy="LRU"/> <eviction maxEntries="1000" strategy="LRU"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment