Hello all,
I would like to know if there is such parameter in Hazelcast to disable temporary the cache mechanism for a specific map.
Indeed, my program is basically doing the following steps:
HazelcastInstance instance = ...; //retrieve Hazelcast instance
IMap<> map = instance.getMap();
Object cache = map.get("someKey");
For performance testing, I would like to disable a specific map. So I would expect a mechanism which would still return a map with the getMap(), but the get() would always return a null.
At the moment, my only option was to set the time-to-live-seconds to the lower possible value (1) but it is not really the same procedure as if I was able to disable the cache for this map..
Is there any better options?
Thanks for your help
Rgds