From f0c174499810d6e2c04ceb892d7c36ec8d25ad47 Mon Sep 17 00:00:00 2001 From: xing Date: Thu, 26 Oct 2023 21:45:02 +0800 Subject: [PATCH] fix --- app/pkg/cache/cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/pkg/cache/cache.go b/app/pkg/cache/cache.go index f8aa08e..d9d323d 100644 --- a/app/pkg/cache/cache.go +++ b/app/pkg/cache/cache.go @@ -77,7 +77,7 @@ func InitActionsCommonCache() { commentsFeedCache = cache.NewVarCache(commentsFeed, time.Hour) - newCommentCache = cachemanager.NewMemoryMapCache[string, string](nil, nil, 15*time.Minute, "feed-NewComment") + newCommentCache = cachemanager.NewMemoryMapCache[string, string](nil, nil, 15*time.Minute, "NewComment") InitFeed() }