When to use pool vs the other option?
CheyenneForbes opened this issue · 1 comments
CheyenneForbes commented
Hi can anyone explain when should I use the pool option or the other option?
methane commented
For simplest case, you can use one connection directly.
For simple but concurrent case, pool may be good for you.
When you have problem you cannot solve with pool, it's time to manage connections by yourself.