From 5f4b993154b7157b430610f28a3db5e1b2c205b3 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Tue, 25 Oct 2022 14:53:05 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9A=20=D0=BF=D1=80=D0=B5=D0=B4=D1=8B=D0=B4?= =?UTF-8?q?=D1=83=D1=89=D0=B5=D0=BC=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/core/DbSearcher.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/core/DbSearcher.js b/server/core/DbSearcher.js index 51edba4..375e2c0 100644 --- a/server/core/DbSearcher.js +++ b/server/core/DbSearcher.js @@ -109,6 +109,7 @@ class DbSearcher { }); seriesIds = seriesRows[0].rawResult; + await this.putCached(seriesKеy, seriesIds); } idsArr.push(seriesIds); @@ -140,6 +141,7 @@ class DbSearcher { }); titleIds = titleRows[0].rawResult; + await this.putCached(titleKey, titleIds); } idsArr.push(titleIds); @@ -181,6 +183,7 @@ class DbSearcher { }); genreIds = genreRows[0].rawResult; + await this.putCached(genreKey, genreIds); } idsArr.push(genreIds); @@ -216,6 +219,7 @@ class DbSearcher { }); langIds = langRows[0].rawResult; + await this.putCached(langKey, langIds); } idsArr.push(langIds);