Merge pull request #1817 from joshuaboniface/change-pragma-mode

Change PRAGMA mode from WAL to TRUNCATE
pull/1818/head
Joshua M. Boniface 5 years ago committed by GitHub
commit f63d591b08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -53,10 +53,10 @@ namespace Emby.Server.Implementations.Data
protected virtual int? CacheSize => null;
/// <summary>
/// Gets the journal mode.
/// Gets the journal mode. <see href="https://www.sqlite.org/pragma.html#pragma_journal_mode" />
/// </summary>
/// <value>The journal mode.</value>
protected virtual string JournalMode => "WAL";
protected virtual string JournalMode => "TRUNCATE";
/// <summary>
/// Gets the page size.

Loading…
Cancel
Save