Actualy we are migrating from Coherence to Hazelcast.
In Coherence we use a local cache like this:
<cache-mapping>
<cache-name>INFOHUB_PROGNOSE_DATENSATZ_LOCAL</cache-name>
<scheme-name>default-local</scheme-name>
</cache-mapping>
<local-scheme>
<scheme-name>default-local</scheme-name>
</local-scheme>
Because in coherence are local caches perm mutch better than distributed.
Is there an equvalent in Hazelcast? Something like force Hazelcast to have the cache just in the local JVM.
A plain java map is no alternative, because of all the great features like eviction that an IMap offers.