使用数据结构和算法(特别是 C 编程语言)的内存数据库
如何使用 C 编程中的结构来创建内存数据库?
How do you go about creating an in-memory database using structures specifically in C programming?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试查看 sqlite 的代码:
http://www.sqlite.org/
它是在C并提供单进程SQL数据库后端。它可以支持开箱即用的“内存中”模式:
http://sqlite.org/c3ref/ open.html
sqlite 代码非常紧凑,网站上有相当多的 API 文档。它可能为您自己的工作提供有用的案例研究。
You might try looking over the code for sqlite:
http://www.sqlite.org/
It is implemented in C and provides a single-process SQL database backend. It can support an "in-memory" mode out of the box:
http://sqlite.org/c3ref/open.html
The sqlite code is quite compact and there is a fair amount of API documentation on the website. It might give you a useful case study for your own work.