How to program a connection pool?
- by the_drow
Is there a known algorithm for implementing a connection pool? If not what are the known algorithms and what are their trade-offs?
What design patterns are common when designing and programming a connection pool?
Are there any code examples implement a connection pool using boost.asio?
Is it a good idea to use a connection pool for presisting connections (not http)?
How is threading related to connection pooling? When do you need a new thread?