Optimized B+ tree implementation

614 views Asked by At

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?

1

There are 1 answers

0
Pavel Smirnov On BEST ANSWER

Check out this one: BPlusTree

You may also want to check MapDB.