Implemented search cache

This commit is contained in:
2025-12-14 22:07:14 +01:00
parent 4a6a5008c0
commit 1f67682879
3 changed files with 48 additions and 7 deletions

View File

@@ -64,7 +64,9 @@ public class SearchdomainManager
public void InvalidateSearchdomainCache(string searchdomainName)
{
GetSearchdomain(searchdomainName).UpdateEntityCache();
var searchdomain = GetSearchdomain(searchdomainName);
searchdomain.UpdateEntityCache();
searchdomain.InvalidateSearchCache(); // TODO implement cache remediation (Suggestion: searchdomain-wide setting for cache remediation / invalidation - )
}
public List<string> ListSearchdomains()