实现持久的 B 树

发布于 2024-10-29 04:40:16 字数 168 浏览 0 评论 0原文

我有兴趣使用 c++ 或 java 实现持久的 B 树,因为我需要存储一些路径表达式,例如 //scientist/person/... /[Albert Einstein]。

我尝试过谷歌,但我不满意。关于这一点的一些提示将会非常有帮助,或者任何关于从哪里开始的想法。然而,BTree 必须存储在磁盘上。

I'm interested to implement a presistent B-Tree using either c++ or java, as I need to store some path expressions e.g. //scientist/person/... /[Albert Einstein].

I tried google, but I was not satisfied. Some hints on this would be very helpful, or any ideas as where to start with. The BTree must be stored on the the disk however.

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

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

发布评论

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

评论(2

梦途 2024-11-05 04:40:16

避免使用指针,而是使用基地址的索引。
这样,您可以简单地将 btree 映射到内存中,并使用基地址和索引作为查找。

如果使用 Windows,请查看文件的地图视图。

Avoid using pointers, instead use index from a base address.
This way you can simply mmap the btree into memory and use the base address along with the index as a lookup.

If using windows look at mapview of file instead.

百思不得你姐 2024-11-05 04:40:16

你看过qdbm吗?

Did you look at qdbm?

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