PyMySQL/Tornado-MySQL

When to use pool vs the other option?

CheyenneForbes opened this issue · 1 comments

Hi can anyone explain when should I use the pool option or the other option?

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.