I was wondering why there are multiple MySQL connections opened for a single page load? If I take the same queries and run them in a seperate PHP page, it will open one connection, execute all queries, close the connection (which runs extremely fast). However, Drupal looks as though it is running each query in a new connection and this causes the issue the MySQL cannot keep up. Should there only be one connection per user/page load?

- Shane