I'm having trouble understanding how to use this library correctly, because it's creating garbage per allocation and that seems to be the intention? Is the library intended to be used with these characteristics? Or am I missing something, and is there another way to allocate?
For example:
package org.jire;
import net.openhft.chronicle.bytes.Byteable;
import net.openhft.chronicle.bytes.NativeBytesStore;
import net.openhft.chronicle.core.values.IntValue;
import net.openhft.chronicle.values.Values;
public class Test {
public static void main(String[] args) {
NativeBytesStore<Void> store = NativeBytesStore.nativeStoreWithFixedCapacity(4);
while (true) {
IntValue value = Values.newNativeReference(IntValue.class);
((Byteable) value).bytesStore(store, 0, 4);
}
}
}
After being profiled in YourKit, you can see there are many allocations (garbage) being produced:
You need to create at least one instance on the heap.
However, once you have done this it can be used as a flyweight which points to any area in native memory.
In this example, the data is many times the heap size, yet uses no heap.
run with -Xmx64m -verbose:gc -ea print some GC on startup but when running produces no objects.
Now, to get really interesting you can now map this to a file, this file can be accessed concurrently by multiple processes.
prints
NOTE: that's just 13 nano-second on average to write data to a file AND read it back later.