B+Tree on-disk implementation in Java

后端 未结 3 567
温柔的废话
温柔的废话 2021-01-05 06:56

Does anyone know where to find a B+Tree on-disk implementation? I went through google forward and backward and unfortunately I couldn\'t find anything sensible. Other thread

3条回答
  •  情歌与酒
    2021-01-05 07:24

    If you need it for real usage rather than for educational purposes (studying B+Tree data structure, etc.), LMDBJava is probably the best solution, available in Java now. It's not B+Tree exactly, but also a sorted key-value store, so practically the same as B+Tree.

提交回复
热议问题