From bfa530e962795b806409f53fea0cf903bcc904be Mon Sep 17 00:00:00 2001 From: Ilya_Shlyakhter Date: Wed, 16 Jun 2021 20:06:39 +0000 Subject: [PATCH] added suggestion to allow use of synchronous=OFF with Sqlite --- .../add_option_to_use_sqlite__39__s_synchronous__61__OFF.mdwn | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/todo/add_option_to_use_sqlite__39__s_synchronous__61__OFF.mdwn diff --git a/doc/todo/add_option_to_use_sqlite__39__s_synchronous__61__OFF.mdwn b/doc/todo/add_option_to_use_sqlite__39__s_synchronous__61__OFF.mdwn new file mode 100644 index 0000000000..90c4ac759c --- /dev/null +++ b/doc/todo/add_option_to_use_sqlite__39__s_synchronous__61__OFF.mdwn @@ -0,0 +1 @@ +Sqlite docs [say](https://www.sqlite.org/pragma.html#pragma_synchronous) "commits can be orders of magnitude faster with synchronous OFF". The downside is a chance of db corruption if power fails at a bad moment, but since git-annex's dbs can be re-generated from git data, maybe that's a tradeoff some users would be ok with? One usually knows when power has failed.