Update CHANGELOG, sync docs

This commit is contained in:
Griatch 2024-08-25 09:23:24 +02:00
parent 2ee78098a5
commit 11f0e8b01a
4 changed files with 29 additions and 8 deletions

View file

@ -319,6 +319,16 @@ DATABASES = {
"PORT": "",
}
}
# PRAGMA (directives) for the default Sqlite3 database operations. This can be used to tweak
# performance for your setup. Don't change this unless you know what # you are doing.
SQLITE3_PRAGMAS = (
"PRAGMA cache_size=10000",
"PRAGMA synchronous=1",
"PRAGMA count_changes=OFF",
"PRAGMA temp_store=2",
"PRAGMA journal_mode=WAL",
)
# How long the django-database connection should be kept open, in seconds.
# If you get errors about the database having gone away after long idle
# periods, shorten this value (e.g. MySQL defaults to a timeout of 8 hrs)