From caf1180aff9d81a498182b6e0e96ceefa20ef557 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Fri, 18 Nov 2022 00:11:37 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E8=99=9A=E6=8B=9F=E5=BC=95=E7=94=A8?= =?UTF-8?q?=E5=85=B3=E9=94=AE=E5=AD=97=E7=BC=93=E5=AD=98=E8=B0=83=E6=95=B4?= =?UTF-8?q?=E4=B8=BA=2010=20=E5=88=86=E9=92=9F=20Fix=20https://github.com/?= =?UTF-8?q?siyuan-note/siyuan/issues/6602?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/sql/cache.go | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/sql/cache.go b/kernel/sql/cache.go index 9b928d726..ff1278813 100644 --- a/kernel/sql/cache.go +++ b/kernel/sql/cache.go @@ -77,6 +77,7 @@ func getVirtualRefKeywordsCache() ([]string, bool) { return nil, false } + // 虚拟引用关键字缓存调整为 10 分钟 https://github.com/siyuan-note/siyuan/issues/6602 if 10 < time.Now().Sub(virtualRefKeywordsCacheTime).Minutes() { ClearVirtualRefKeywords() return nil, false