I have a web application running on multiple servers. And I am planning to implement Memcached into this app with spymemcached as the client. I have created a pool of memcached clients. But I am not sure if the client being borrowed from the pool would be able to create more than one connection to the memcached server.
I want to have a pool of connections that the client from the client pool could use. If this method is fine, then how should I proceed with the implementation? Or else what should be the best method?