You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the CuratorCache will use a ConcurrentHashMap to store data even if only a single node is being cached (CuratorCache.Options.SINGLE_NODE_CACHE).
Instead we should optimize and use an AtomicReference instead in this case.
Currently the
CuratorCachewill use aConcurrentHashMapto store data even if only a single node is being cached (CuratorCache.Options.SINGLE_NODE_CACHE).Instead we should optimize and use an
AtomicReferenceinstead in this case.