Berkeley DB 中的空间索引

发布于 2024-11-05 10:45:34 字数 30 浏览 0 评论 0原文

Berkeley DB有R树之类的空间索引吗?

Does Berkeley DB have a spatial index such as R-tree?

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

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

发布评论

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

评论(2

野心澎湃 2024-11-12 10:45:34

但是,在其他一些页面上,您可以阅读该空间索引是可能的。这是因为 BerkeleyDB 的 SQL 接口二进制文件与 SQLite 的接口兼容,因此您可以使用在此基础上构建的任何内容。 SQLite 的 R* 树和全文搜索只是两个例子。

On some other page however you can read that spatial indices are possible. It's because BerkeleyDB has its SQL interface binary compatible with SQLite's interface so you can use anything which is built on top of that. SQLite's R*-trees and full text search are just two examples.

我喜欢麦丽素 2024-11-12 10:45:34

有人在 Oracle 论坛上提出同样的问题。甲骨文还没有答复。但答案是否定的,它没有任何内置的空间索引功能。 Berkeley DB 是一个低级数据库,提供可供您构建的基本功能。构建块是Btree、Hash、Queue 和 Recno。我毫不怀疑坚定的程序员可以使用这些来实现空间索引。 ;-)

Someone's asking the same question on the Oracle forum. No Oracle answer yet. But the answer is no, it doesn't have any built-in spatial index functionality. Berkeley DB is a low-level database offering basic functionality which you can build upon. The building blocks are Btree, Hash, Queue and Recno. I don't doubt that a determined programmer could implement spatial indices using those. ;-)

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