From e484c9ec9cd960fc85c3ae38151aa33e354694b1 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Mon, 11 Jul 2022 19:54:01 +0900 Subject: [PATCH] =?UTF-8?q?limit=20connection=20pool=20size=2020=20?= =?UTF-8?q?=E2=86=92=2015?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nitter.example.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nitter.example.conf b/nitter.example.conf index 610d468..6c2f8f4 100644 --- a/nitter.example.conf +++ b/nitter.example.conf @@ -16,7 +16,7 @@ rssMinutes = 10 # how long to cache rss queries redisHost = "${REDIS_HOST}" # Change to "nitter-redis" if using docker-compose redisPort = ${REDIS_PORT} redisPassword = "${REDIS_PASSWORD}" -redisConnections = 20 # connection pool size +redisConnections = 15 # connection pool size redisMaxConnections = 30 # max, new connections are opened when none are available, but if the pool size # goes above this, they're closed when released. don't worry about this unless