You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in your code for sqlite, create a new thread pool for each connection. But gevent's thread pool cannot be close by itself. so each time we create a new connection, a new thread pool and a OS thread would be created, and they never be free.
suggest, use a single thread pool for sqlite, not create a new one
The text was updated successfully, but these errors were encountered:
in your code for sqlite, create a new thread pool for each connection. But gevent's thread pool cannot be close by itself. so each time we create a new connection, a new thread pool and a OS thread would be created, and they never be free.
suggest, use a single thread pool for sqlite, not create a new one
The text was updated successfully, but these errors were encountered: