it "easy". if you run web2py using threads, then pooling is ok, since it's managed in a single process, recycling connections in a pool for each new thread that processes a request, and speeds up things a lot.
A lot of webserver though use a single process to handle every request, using fork() (gunicorn, uwsgi, and so on....) to provide concurrency. It means that there are n processes able to serve up to n requests concurrently. In that case, there are no threads involved, so there's no need to use a pool, because every request is handled in a "freshly created" new single process. -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

