From c84e9e795a2a31a3e011e13a393b1278b0feb658 Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Sat, 2 Mar 2013 21:46:47 +0100 Subject: update README * Tell about schema.sql. * Explain WAL. --- README | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 5d539e4..c185a51 100644 --- a/README +++ b/README @@ -6,7 +6,12 @@ aptitude install python python-debian python-lzma curl python-jinja2 python-werk Create a database ----------------- The database name is currently hardcoded as `test.sqlite3`. So copy the SQL -statements from `importpkg.py` into `sqlite3 test.sqlite3`. +statements from `schema.sql` into `sqlite3 test.sqlite3`. In addition it is +highly recommended to put the database into WAL mode. Otherwise all your +reading queries will block forever when doing an import. This setting is +permanent. + + PRAGMA journal_mode = WAL; Import packages --------------- -- cgit v1.2.3