From fedd9caefbffd8689c94ca5c6a3a6c7bd90de197 Mon Sep 17 00:00:00 2001
From: Vben <anncwb@126.com>
Date: 星期二, 23 三月 2021 00:21:09 +0800
Subject: [PATCH] wip: cache miss

---
 src/utils/cache/memory.ts |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/utils/cache/memory.ts b/src/utils/cache/memory.ts
index eb7cf06..d373dcf 100644
--- a/src/utils/cache/memory.ts
+++ b/src/utils/cache/memory.ts
@@ -59,7 +59,7 @@
     }
     item.time = new Date().getTime() + this.alive;
     item.timeoutId = setTimeout(() => {
-      this.remove(key);
+      // this.remove(key);
     }, expires);
 
     return value;

--
Gitblit v1.8.0