Hallo,
I want to use a shared cache for JIRA and Confluence Cluster.
I return the cache with this method:
public Cache<String, Long> getSharedCache() { if(cache==null){ cache = cacheManager.getCache(NAME_CACHE, null, new CacheSettingsBuilder().replicateViaCopy().build()); cache.addListener(new MyCacheListener<String, Long>(),true); } return cache; }
I add data with
getSharedCache().put(NAME_CACHE_ELEMENT, LONG_VALUE);
and get it with
getSharedCache().get(NAME_CACHE_ELEMENT);
If I add data with clusternode1 than i can get it back on node2.
But if i add this data with node2 I can not get it with node1.
Why the nodes synchronize only from node1 to node2 and not on the other way?
Sorry I save the question to quickly
In what context? Why are you trying to do this, and what for? I assume you're using Datacentre versions of both systems too?
I want to share a timestamp. All nodes can put and get the timestamp. Yes I use the data center version.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, ok, you've updated the question, my answer is not relevant any more.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.