Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 10 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
SQLite 实现 的作者放弃版权。 如果 LGPL 没问题,那么也许你可以使用 GNUpdate 的实现?
The author of the SQLite implementation has disclaimed copyright. If LGPL is okay, then maybe you could use GNUpdate's implementation?
查看 QDBM:http://fallabs.com/qdbm/。 它采用 LGPL(可用于商业应用程序),使用任意键/值对实现磁盘支持的哈希和/或 B+ 树,并构建在各种平台上。
Check out QDBM: http://fallabs.com/qdbm/. It's LGPL (can be used in commercial app), implements a disk backed hash and/or B+ tree with arbitrary key/value pairs, and builds on a variety of platforms.
我遇到了 这个 - 用于 SCM、Java、C# 的 WB B 树数据库, C 是一个 GNU 包。
I came across this - The WB B-Tree Database for SCM, Java, C#, and C that's a GNU package.
如果 LGPL 没问题,那么东京内阁可能符合要求。 LGPL 允许与非自由应用程序链接,而不会对最终产品的分发添加任何限制。
If LGPL is ok, then Tokyo Cabinet might fit the bill. LGPL allows linking with a non-Free application, without adding any constraints on the distribution of the final product.
有吸引力的混沌实现kbtree.h。 这是一个高效的B树库
Attractive Chaos implement kbtree.h. It's a efficient B-tree library
也许你可以考虑伯克利数据库。 它在内部使用 B 树。
Maybe you can considere the berkeley db. It is using a b-tree internally.