I have a web page using jQuery to perform multiple AJAX calls, not all at once. Each AJAX call is made to a different PHP file, and each file uses a connection to the same mysql server and database. Creating a connection in each of these AJAX calls is awful for performance, how can I create one connection and maintain it throughout all of the AJAX calls? Thanks!
|
|
When running PHP as Apache Module, you can use persistent connections. Using the classical (and deprecated) libmysql API, you would call When working with PDO, you can achieve a persistent connection as follows:
However, usually the performance impact of establishing a connection to the database server should be negligible (I do not have any benchmarks to confirm this, however). |
|||
|
|
|
As stated in comments. It is extremely bad idea. It might be very tricky when running PHP via apache's mod_php.
Where did this idea came from? Make sure you are connecting via socket. |
|||
|
