ASHIK
07/14/2025, 7:30 PMMarvin
07/14/2025, 7:30 PMMarvin
07/14/2025, 7:31 PMsql
PRAGMA journal_mode = WAL;           -- Enable Write-Ahead Logging
PRAGMA busy_timeout = 5000;          -- Wait up to 5 seconds before SQLITE_BUSY errors
PRAGMA synchronous = NORMAL;         -- Better performance while maintaining safety
PRAGMA cache_size = -20000;          -- Use 20MB memory cache
PRAGMA foreign_keys = true;          -- Enable foreign key support
PRAGMA temp_store = memory;          -- Store temp tables in RAM