coherence-community / oracle-bedrock

Oracle Bedrock
Other
54 stars 31 forks source link

ClusterMember.getCache() always uses default cache factory #450

Closed rlubke closed 2 years ago

rlubke commented 2 years ago

Calling ClusterMember.getCache() results in return new CoherenceNamedCache(this, cacheName, Object.class, Object.class); being returned.

This version of the constructor uses the following callable to get the cache: new RemoteCallableStaticMethod<>("com.tangosol.net.CacheFactory", "getCache", cacheName))

There doesn't seem to be a way to select a particular session/CCF when using the Cluster API.