limit connection pool size 20 → 15

This commit is contained in:
Nebel 2022-07-11 19:54:01 +09:00
parent d008ee0b82
commit e484c9ec9c

View file

@ -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