This content has been marked as final.
Show 2 replies
-
1. Re: Distributed cache mode in client/server infinispan (standalone.sh)
nadirx Jun 15, 2016 11:14 AM (in response to haytham.salhi)Looking at the default clustered.xml:
<distributed-cache name="default" mode="SYNC" segments="20" owners="2" remote-timeout="30000" start="EAGER">
<locking acquire-timeout="30000" concurrency-level="1000" striping="false"/>
<transaction mode="NONE"/>
</distributed-cache>
So the answer is yes, that cache is distributed. You may want to edit clustered.xml to remove unwanted configurations and tune the above to what you need.
-
2. Re: Distributed cache mode in client/server infinispan (standalone.sh)
haytham.salhi Jun 15, 2016 12:41 PM (in response to nadirx)As expected. Just wanted to make sure. Many thanks Trisant