2 implementations of GetCacheAsync
Microsoft.Extensions.AI.Evaluation.Reporting (1)
Storage\DiskBasedResponseCacheProvider.cs (1)
47public ValueTask<IDistributedCache> GetCacheAsync(
Microsoft.Extensions.AI.Evaluation.Reporting.Azure (1)
Storage\AzureStorageResponseCacheProvider.cs (1)
48public ValueTask<IDistributedCache> GetCacheAsync(
9 references to GetCacheAsync
Microsoft.Extensions.AI.Evaluation.Reporting (1)
ReportingConfiguration.cs (1)
234await ResponseCacheProvider.GetCacheAsync(
Microsoft.Extensions.AI.Evaluation.Reporting.Tests (8)
ResponseCacheTester.cs (8)
43IDistributedCache cache = await provider.GetCacheAsync(nameof(AddUncachedEntry), iterationName); 66IDistributedCache cache = await provider.GetCacheAsync(nameof(RemoveCachedEntry), iterationName); 95IDistributedCache cache = await provider.GetCacheAsync(nameof(RemoveCachedEntry), iterationName); 118IDistributedCache cache = await provider.GetCacheAsync(nameof(MultipleCacheInstances), "Async"); 120IDistributedCache cache2 = await provider.GetCacheAsync(nameof(MultipleCacheInstances), "Async"); 145IDistributedCache cache = await provider.GetCacheAsync(nameof(RemoveCachedEntry), iterationName); 162cache = await provider.GetCacheAsync(nameof(RemoveCachedEntry), iterationName); 177IDistributedCache cache = await provider.GetCacheAsync(nameof(RemoveCachedEntry), iterationName);