Java 中的 B+Tree 磁盘实现

发布于 2024-09-08 07:33:25 字数 162 浏览 2 评论 0原文

有谁知道在哪里可以找到 B+Tree 磁盘实现吗?我前后搜索了谷歌,不幸的是我找不到任何有意义的东西。其他线程建议也许从 sqlite、sqljet 或 bdb 中获取树,但这些树嵌套在整个数据库中,您不能真正“仅仅”过滤掉 B+Tree。 我真的只是在寻找磁盘上的 B+Tree...周围没有任何花哨的东西。

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 threads have suggested to maybe take the tree from sqlite, sqljet or bdb but these trees are nested in the whole database and you can't really "just" filter out the B+Tree.
I'm really looking for only a on-disk B+Tree... without any fancy things around.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

孤独难免 2024-09-15 07:33:25

有一个受 GDBM 启发的 Java 持久化引擎: MapDB

There is a GDBM-inspired Java persistence engine: MapDB

明媚如初 2024-09-15 07:33:25

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文