|
|
|
|
|
by wmanley
488 days ago
|
|
You definitely want WAL mode (unless you’re accessing SQLite over NFS). It’s only not the default for backwards compatibility. I’d enable: PRAGMA journal_mode = WAL;
PRAGMA foreign_keys = 1;
PRAGMA mmap_size = 1099511627776; Unless you know a reason that you can’t (like NFS or using a 32-bit cpu). |
|
interesting, why there's that limitation when nfs and a 32-bit cpu are involved?