diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-02 22:46:46 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-02 22:46:46 -0400 |
| commit | 59118a2ddbf31973873eef42ef18182300fe9a0c (patch) | |
| tree | 0eec260dd2b78d9ec5ddc95d62f5f90628a3925d /MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs | |
| parent | be36049527b8d03300c6258c4b2941482b89bb1f (diff) | |
switch to write ahead logging
Diffstat (limited to 'MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs b/MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs index 7547212c5..297033cd6 100644 --- a/MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs +++ b/MediaBrowser.Server.Implementations/Sqlite/SQLiteRepository.cs @@ -63,7 +63,7 @@ namespace MediaBrowser.Server.Implementations.Sqlite CacheSize = 40960, SyncMode = SynchronizationModes.Off, DataSource = dbPath, - JournalMode = SQLiteJournalModeEnum.Memory + JournalMode = SQLiteJournalModeEnum.Wal }; Connection = new SQLiteConnection(connectionstr.ConnectionString); |
