-1

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?

Bat
  • 771
  • 11
  • 29

1 Answers1

0

Check out this one: BPlusTree

You may also want to check MapDB.

Pavel Smirnov
  • 4,611
  • 3
  • 18
  • 28