mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Update CHANGELOG, sync docs
This commit is contained in:
parent
2ee78098a5
commit
11f0e8b01a
4 changed files with 29 additions and 8 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue