We are planning to use Infinispan
in client server mode. The architecture has many clients (client 1, client 2 and so on )
and a distributed infinispan
network.
We need to update the data in the cache periodically, say every5 hours
. All clients could be able to update the data. If one of them (say client 1
) is updating we need to prevent others doing the same job. Once the updating is complete all clients wait another 5 hour and, any of them will do the the updating again.
How to achieve this in infinispan 6
?
Thanks in advance.