viper-app/internal/model/db-sqlite.sql

10 lines
236 B
SQL

-- Set the cache size:
-- 设置缓存大小:
PRAGMA cache_size = 10000;
-- Set the page size:
-- 设置页面大小:
PRAGMA page_size = 4096;
-- Enable Write-Ahead Logging (WAL):
-- 启用预写日志 (WAL):
PRAGMA journal_mode = WAL;