I am working with very large collections of small objects. I am using using ChronicleMap
which is performing very well.
Is the maximum number of map entries limited to Integer.MAX_VALUE
?
If not, how do I get the real size of a map as the map.size()
returns Integer.MAX_VALUE
if the number of entries is higher than Integer.MAX_VALUE
?
Thanks in advance.