optimize database calls related to search index (#2645)

This commit is contained in:
Jason Dove
2025-11-13 13:27:37 -06:00
committed by GitHub
parent b6d509b9cd
commit d88e721d2f
32 changed files with 837 additions and 729 deletions
@@ -0,0 +1,10 @@
namespace ErsatzTV.Core.Interfaces.Metadata;
public interface ILanguageCodeCache
{
IReadOnlyDictionary<string, string[]> CodeToGroupLookup { get; }
IReadOnlyList<string[]> AllGroups { get; }
Task Load(CancellationToken cancellationToken);
}