19:39:49 GMT hey good people, Which one is the better practice ? A) Create a connection to redis cluster globally in a web application. B) create a connection pool on demand. 19:41:08 GMT have a pool and take a connection from it when necessary. that's what pools are for. 19:41:51 GMT minus: thanks