0.3.2
- Safer and easier BufferCursor API
The safest (and slowest) approach for interacting with LMDB JNI is using buffer copy using JNI. BufferCursor is an advanced, more efficient, zero copy mode. There is also DirectBuffer which is even more advanced but users should avoid interacting directly with these and use the BufferCursor API instead. Otherwise take extra care of buffer memory address+size and byte ordering. Mistakes may lead to SIGSEGV or unpredictable key ordering etc.