feat: 更新SQLite连接配置,启用共享缓存和WAL模式,设置忙等待和内存映射参数

This commit is contained in:
TsMask
2025-10-20 16:07:05 +08:00
parent c15e773e2b
commit 9603dd9188
2 changed files with 10 additions and 19 deletions

View File

@@ -1,9 +0,0 @@
-- ----------------------------
-- Configuration
-- ----------------------------
-- 启用完整的自动空间回收
PRAGMA auto_vacuum = FULL;
-- 日志模式设置为 WAL 并发写入
PRAGMA journal_mode = WAL;
PRAGMA synchronous = NORMAL;