database: Open the database in "write-ahead log" mode.

Suggested by Ricardo Wurmus.

* src/cuirass/database.scm (wal-mode): New procedure.
(db-open): Use it.
This commit is contained in:
Ludovic Courtès 2018-01-26 18:20:30 +01:00
parent e11bcf926d
commit f3335e880c
1 changed files with 11 additions and 3 deletions

View File

@ -99,6 +99,11 @@ SQL statement to DB. FMT and ARGS are passed to 'format'."
(reverse! insts)
(loop (cons inst insts))))))))
(define (wal-mode db)
"Turn DB in \"write-ahead log\" mode and return it."
(sqlite-exec db "PRAGMA journal_mode=WAL;")
db)
(define* (db-init #:optional (db-name (%package-database))
#:key (schema (%package-schema-file)))
"Open the database to store and read jobs and builds informations. Return a
@ -115,9 +120,12 @@ database object."
(define* (db-open #:optional (db (%package-database)))
"Open database to store or read jobs and builds informations. Return a
database object."
(if (file-exists? db)
(sqlite-open db SQLITE_OPEN_READWRITE)
(db-init db)))
;; Use "write-ahead log" mode because it improves concurrency and should
;; avoid SQLITE_LOCKED errors when we have several readers:
;; <https://www.sqlite.org/wal.html>.
(wal-mode (if (file-exists? db)
(sqlite-open db SQLITE_OPEN_READWRITE)
(db-init db))))
(define (db-close db)
"Close database object DB."