rqlite 是一款用 Go 语言编写的轻量级、开源、分布式关系数据库,它使用 SQLite 作为存储引擎。最近我向 rqlite 中引入了一个高性能写入方法,大吃一惊的是,我还发现了 SQLite 中的一 个bug。 SQLite 团队很快解决了这个问题,但在此也记录一下发现过程与复现经历 ...
In my last article I wrote about accessing a PostgreSQL database in C/C++. In this article, I'm going to discuss performing the same functions in C against an SQLite database. Unlike Postgresql and ...