The question is: if I have a webpage hosted somewhere. The backend environment is LAMP supported. For example: whenever a user opens a new page, it will create a new mysql connection to the MySQL database server and do a corresponding query. We all know that MySQL has a max_connection limit (100 for version <5.1 as default).
Of course, we could increase the max_connection number of mysql. Besides that, I would like to know if there are some existing ways (hopefully not too complicated) to support many(say around 30,000-40,000) users at the same time. Any articles or links would be appreciated!