]
Scott Marlow resolved WFLY-13234.
---------------------------------
Resolution: Explained
WF17 vs. WF18: org.infinispan.hibernate-cache
---------------------------------------------
Key: WFLY-13234
URL:
https://issues.redhat.com/browse/WFLY-13234
Project: WildFly
Issue Type: Task
Components: JPA / Hibernate
Affects Versions: 18.0.1.Final
Reporter: Daniel Wehrle
Assignee: Scott Marlow
Priority: Major
Hi.
Why has the entity cache transaction in org.infinispan.hibernate-cache been changed from
NON_XA to NONE (default) and what are the implications? Can this lead to performance
problems?
WF17
{code}
<cache-container name="hibernate"
module="org.infinispan.hibernate-cache">
<local-cache name="entity">
<transaction mode="NON_XA"/>
<object-memory size="10000"/>
<expiration max-idle="100000"/>
</local-cache>
{code}
WF18
{code}
<cache-container name="hibernate"
module="org.infinispan.hibernate-cache">
<local-cache name="entity">
<object-memory size="10000"/>
<expiration max-idle="100000"/>
</local-cache>
{code}
Best regards,
Daniel