1 write to _indexCacheKey
aspire (1)
Documentation\Docs\DocsCache.cs (1)
34
_indexCacheKey
= DocsSourceConfiguration.GetIndexCacheKey(_llmsTxtUrl);
5 references to _indexCacheKey
aspire (5)
Documentation\Docs\DocsCache.cs (5)
35
_indexSourceFingerprintCacheKey = $"{
_indexCacheKey
}:fingerprint";
58
var documents = await _contentCache.GetJsonAsync(
_indexCacheKey
, JsonSourceGenerationContext.Default.LlmsDocumentArray, cancellationToken: cancellationToken).ConfigureAwait(false);
77
await _contentCache.SetJsonAsync(
_indexCacheKey
, legacyDocuments, JsonSourceGenerationContext.Default.LlmsDocumentArray, cancellationToken).ConfigureAwait(false);
85
await _contentCache.SetJsonAsync(
_indexCacheKey
, documents, JsonSourceGenerationContext.Default.LlmsDocumentArray, cancellationToken).ConfigureAwait(false);
120
private bool HasLegacyIndexCacheKey => !string.Equals(_legacyIndexCacheKey,
_indexCacheKey
, StringComparison.Ordinal);