javaperformanceoptimizationtreeb-plus-tree

Optimized B+ tree implementation


I am working on a high-performance single-thread java application. My project depends on a B+ tree. Because performance is very critical, I prefer not to implement it myself and use an optimized public implementation. This way I am more assured that the implementation is fully optimized. But I couldn't find a proper implementation on Github or any other similar online source.

Where can I find a well-written java B+ tree code?


Solution

  • Check out this one: BPlusTree

    You may also want to check MapDB.