As of version 3.39.0 (2022-06-25), the SQLite library consists of approximately 151.3 KSLOC of C code. (KSLOC means thousands of "Source Lines Of Code" or, in other words, lines of code excluding blank lines and comments.) By comparison, the project has 608 times as much test code and test scripts - 92038.3 KSLOC.
sqlite 的部分测试是不开源、专有的。
hamsterbase
2023-01-20 12:39:31 +08:00
我基于 CRDT 和 sqlite 设计了一个分布式的稍后读工具,所有节点可以达到分布式一致性。
1. 以 CRDT 文件作为 single source of truth , 保证向前向后兼容。 2. 以 sqlite 数据库作为缓存。 可以按照需求任意修改 sqlite 的数据库格式 。 3. 不同客户端直接通过点对点同步 CRDT 文件, 修改后把 CRDT 的数据同步到 sqlite 。
The "Cloud Backed SQLite" (CBS) system allows databases to be stored within cloud storage accounts such that they can be read and written by storage clients without first downloading the entire database to the client.