Hello!
I developed an application, basted on FastAPI, currently implemented using the classic blocking MySQL Python connector, which allows multiple clients to concurrently query the database.
In order to improve performances with many active clients, I'm using a connection pool.
I would like to use the new async/await api offered by version 8.3 of the Python connector, but it seems it's lacking connection pool support.
Now, my question is the following: do I really need a connection pool?
I developed an application, basted on FastAPI, currently implemented using the classic blocking MySQL Python connector, which allows multiple clients to concurrently query the database.
In order to improve performances with many active clients, I'm using a connection pool.
I would like to use the new async/await api offered by version 8.3 of the Python connector, but it seems it's lacking connection pool support.
Now, my question is the following: do I really need a connection pool?