Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
is connect pool supported? #36
Comments
|
I've been working on something similar for cluster support, though I did not plan to provide it in the API. Are you interested in connection pooling for thread safety? Everything is pipelined in cpp-redis, so it is relatively thread safe. You must, however, be careful with the capture context in the callback parameters. I would recommend instantiating multiple clients if you run into any issues with deadlocking delays. |
|
Thanks for your effort, I am using acl redis for now. connection pool is using for reuse the connection to redis server |
does this lib support connect pool?