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"; 58var documents = await _contentCache.GetJsonAsync(_indexCacheKey, JsonSourceGenerationContext.Default.LlmsDocumentArray, cancellationToken: cancellationToken).ConfigureAwait(false); 77await _contentCache.SetJsonAsync(_indexCacheKey, legacyDocuments, JsonSourceGenerationContext.Default.LlmsDocumentArray, cancellationToken).ConfigureAwait(false); 85await _contentCache.SetJsonAsync(_indexCacheKey, documents, JsonSourceGenerationContext.Default.LlmsDocumentArray, cancellationToken).ConfigureAwait(false); 120private bool HasLegacyIndexCacheKey => !string.Equals(_legacyIndexCacheKey, _indexCacheKey, StringComparison.Ordinal);