-
Enhancement
-
Resolution: Won't Do
-
Minor
-
None
-
7.0.0.Alpha4
-
None
-
None
The current implementation of the method putAllAsync(...) within the Hot Rod client simple use the putAll(...) method which simple iterate over the given Map and use put(...) for each entry synchrounous.
Therefore it takes a longer time to put all entries into the cache.
A simple loop which calls putAsync for each entry has a significant improvement.
i.e. with 100,000 entries the over all duration is 15 times faster
- is related to
-
ISPN-2041 Provide putAll(map) and getAll(map) bulk operation on Cache and RemoteCache
- Resolved