Luca Ferrari:SQLite3 的真空和自动真空
原文英文,约300词,阅读约需2分钟。发表于: 。Similarly to PostgreSQL, also SQLite3 needs some care… SQLite3 Vacuum and Autovacuum Today I discovered, by accident I need to confess, that PostgreSQL is not the only database requiring...
SQLite3支持手动和自动的VACUUM操作,用于释放数据库未使用的空间。手动VACUUM通过复制和重组数据库文件来实现空间回收。自动VACUUM默认关闭,有全模式和增量模式两种。全模式较激进,增量模式较温和,仅在需要时释放空间。SQLite3的VACUUM机制类似于PostgreSQL,但配置更简单,没有复杂的阈值设置。