IMap is Hazelcast IMDG abstract structure similar to standard library map.
Questions tagged [hazelcast-imap]
404 questions
14
votes
1 answer
Weird Hazelcat IMap#put() behaviour
My Hazelcast-based program can work in two modes: submitter and worker.
Submitter puts some POJO to the distributed map by some key, e.g.: hazelcastInstance.getMap(MAP_NAME).put(key, value);
Worker has an infinite loop (with Thread.sleep(1000L);…

Dmytro Titov
- 2,802
- 6
- 38
- 60
6
votes
1 answer
Hazelcast spring configuration
Whats the difference between tag created in the applicationContext vs the one that is defined in the segment?
How are they related?
I am aware that in applicationContext would result in creation of a bean of type IMap…

Manish
- 909
- 1
- 11
- 23
5
votes
1 answer
Hazelcast SlowOperationDetector to identify operations with less than 1 sec execution time
I have a performance use case by which I need to identify certain process() calls in the EntryProcessor which takes more than 300 milliseconds. I tried to make use of SlowOperationDetector with the following configuration.