Forums

Connection pooling

Is it possible to make a connection pool for a web application hosted in PAW?

The server log claims that uWSGI can run up to 64 processes so each of those processes would have to have its own pool, which would defeat the purpose. Am I missing something?

"Web Developer" users get 3 worker processes per web app, so each one would need its own connection pool, yes. It may still be worth doing, it depends on whether your web framework already does some connection pool, whether it supports persistent connections, whether it's creating new connections for each request...