Benefits of Connection Pooling »



Benefits of Connection Pooling:
Connection pooling can greatly increase the performance of your Java application, while reducing overall resource usage. The main benefits to connection pooling are:

Reduced connection creation time:
While this is not usually an issue with the quick connection setup that MySQL offers compared to other databases, creating connections still has networking and JDBC [...]