diff --git a/modules/docs/src/Volo.Docs.Application/Volo/Docs/Documents/DocumentAppService.cs b/modules/docs/src/Volo.Docs.Application/Volo/Docs/Documents/DocumentAppService.cs index 1e459c1f0d..570c8590b0 100644 --- a/modules/docs/src/Volo.Docs.Application/Volo/Docs/Documents/DocumentAppService.cs +++ b/modules/docs/src/Volo.Docs.Application/Volo/Docs/Documents/DocumentAppService.cs @@ -381,21 +381,6 @@ namespace Volo.Docs.Documents return await GetDocumentAsync(documentName, project, languageCode, version, document); } - var cacheKey = CacheKeyGenerator.GenerateDocumentUpdateInfoCacheKey( - project, - document.Name, - document.LanguageCode, - document.Version - ); - - await DocumentUpdateCache.SetAsync(cacheKey, new DocumentUpdateInfo - { - Name = document.Name, - CreationTime = document.CreationTime, - LastUpdatedTime = document.LastUpdatedTime, - LastSignificantUpdateTime = document.LastSignificantUpdateTime - }); - return CreateDocumentWithDetailsDto(project, document); }