]
Scott Marlow closed WFLY-5137.
------------------------------
Resolution: Done
Add immutable-entity cache container entry for the Hibernate second
level cache
-------------------------------------------------------------------------------
Key: WFLY-5137
URL:
https://issues.jboss.org/browse/WFLY-5137
Project: WildFly
Issue Type: Task
Components: Clustering, JPA / Hibernate
Reporter: Scott Marlow
Assignee: Scott Marlow
Fix For: 10.0.0.CR1
Add immutable-entity to
[
https://github.com/wildfly/wildfly/blob/master/clustering/infinispan/exte...]
{quote}
<cache-container name="hibernate"
default-cache="local-query" module="org.hibernate.infinispan">
<local-cache name="entity">
<transaction mode="NON_XA"/>
<eviction strategy="LRU"
max-entries="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="immutable-entity">
<transaction mode="NON_XA"/>
<eviction strategy="LRU"
max-entries="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="local-query">
<eviction strategy="LRU"
max-entries="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="timestamps"/>
</cache-container>
{quote}
Also see discussion on
[
http://lists.jboss.org/pipermail/hibernate-dev/2015-August/013297.html]