sqlite: properly serialize operations on the databases
1. There is one database per folder and sqlite requires to serialize the
writings. Instead of locking at LocalStatusSQLiteFolder instance level,
introduce a new DatabaseFileLock object which is shared across threads. This
fixes the concurrent writes issues that some users might experience by
duplications or flags restored to the previous state.
2. Close the database only when we are sure no other threads will use the
connection on a *per-file* basis. Previous fix 677afb8d8f
is wrong
because the same lock is shared for all the database files.
Github-fix: https://github.com/OfflineIMAP/offlineimap/issues/350
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
@ -95,6 +95,7 @@ class LocalStatusRepository(BaseRepository):
|
||||
# data. This might happen if the user removed the folder (maildir) and
|
||||
# it is re-created afterwards.
|
||||
folder.purge()
|
||||
folder.openfiles()
|
||||
folder.save()
|
||||
folder.closefiles()
|
||||
|
||||
|
Reference in New Issue
Block a user