mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-15 07:34:27 -04:00
autocreate db cache table when needed and reenable WAL mode
This commit is contained in:
parent
d60d73754d
commit
7b7aa239fd
1 changed files with 9 additions and 9 deletions
|
@ -1080,16 +1080,16 @@ def setup_django(out_dir: Path=None, check_db=False, config: ConfigDict=CONFIG,
|
||||||
django.setup()
|
django.setup()
|
||||||
|
|
||||||
# Enable WAL mode in sqlite3
|
# Enable WAL mode in sqlite3
|
||||||
# from django.db import connection
|
from django.db import connection
|
||||||
# with connection.cursor() as cursor:
|
with connection.cursor() as cursor:
|
||||||
# cursor.execute("PRAGMA journal_mode=wal;")
|
cursor.execute("PRAGMA journal_mode=wal;")
|
||||||
|
|
||||||
# Create cache table in DB
|
# Create cache table in DB if needed
|
||||||
# try:
|
try:
|
||||||
# from django.core.cache import cache
|
from django.core.cache import cache
|
||||||
# cache.get('test', None)
|
cache.get('test', None)
|
||||||
# except django.db.utils.OperationalError:
|
except django.db.utils.OperationalError:
|
||||||
# call_command("createcachetable", verbosity=0)
|
call_command("createcachetable", verbosity=0)
|
||||||
|
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue