Skip Navigation

Optimizing SQLite for servers

TL;DR?

PRAGMA journal_mode = WAL;
PRAGMA busy_timeout = 5000;
PRAGMA synchronous = NORMAL;
PRAGMA cache_size = 1000000000;
PRAGMA foreign_keys = true;
PRAGMA temp_store = memory ;

7

You're viewing a single thread.

7 comments
You've viewed 7 comments.