Class NativeMap

  • All Implemented Interfaces:
    Iterable<Map.Entry<Key,​Value>>

    public class NativeMap
    extends Object
    implements Iterable<Map.Entry<Key,​Value>>
    This class stores data in a C++ map. Doing this allows us to store more in memory and avoid pauses caused by Java GC. The strategy for dealing with native memory allocated for the native map is that java code using the native map should call delete() as soon as it is finished using the native map. When the NativeMap object is garbage collected its native resources will be released if needed. However waiting for java GC would be a mistake for long lived NativeMaps. Long lived objects are not garbage collected quickly, therefore a process could easily use too much memory.