Merge pull request #4242 from Spacetech/library_scan_speed

Increase library scan and metadata refresh speed
This commit is contained in:
Claus Vium
2020-12-04 13:17:26 +01:00
committed by GitHub
8 changed files with 245 additions and 83 deletions

View File

@@ -439,5 +439,15 @@ namespace MediaBrowser.Model.Configuration
/// Gets or sets the number of days we should retain activity logs.
/// </summary>
public int? ActivityLogRetentionDays { get; set; } = 30;
/// <summary>
/// Gets or sets the how the library scan fans out.
/// </summary>
public int LibraryScanFanoutConcurrency { get; set; }
/// <summary>
/// Gets or sets the how many metadata refreshes can run concurrently.
/// </summary>
public int LibraryMetadataRefreshConcurrency { get; set; }
}
}