I'm using the Redis resource, but it doesn't seem to close connections, I'm quickly using up all my connections on my Redis server and getting "ERR max number of clients reached"
How do I get retool to close the redis connection after a query?
I'm using the Redis resource, but it doesn't seem to close connections, I'm quickly using up all my connections on my Redis server and getting "ERR max number of clients reached"
How do I get retool to close the redis connection after a query?
Hello @Deekor Welcome to the Retool Community,
Retool doesn't automatically close Redis connections after each query, which can lead to exhausting the connection limit on your Redis server.
You can explicitly close the connection by adding a QUIT or DISCONNECT command after your query.
Set Up a TTL for Idle Connections: