mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 04:49:33 -07:00
some comments detaling why we move out the setting !wip
This commit is contained in:
parent
618ee16d9d
commit
69b573a393
1 changed files with 9 additions and 0 deletions
|
@ -98,6 +98,15 @@ namespace Ombi
|
||||||
BuildWebHost(args).Run();
|
BuildWebHost(args).Run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// This is to remove the Settings from the Ombi.db to the "new"
|
||||||
|
/// OmbiSettings.db
|
||||||
|
///
|
||||||
|
/// Ombi is hitting a limitation with SQLite where there is a lot of database activity
|
||||||
|
/// and SQLite does not handle concurrency at all, causing db locks.
|
||||||
|
///
|
||||||
|
/// Splitting it all out into it's own DB helps with this.
|
||||||
|
/// </summary>
|
||||||
private static void CheckAndMigrate()
|
private static void CheckAndMigrate()
|
||||||
{
|
{
|
||||||
var doneGlobal = false;
|
var doneGlobal = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue