Forum Moderators: open
My question is, how many visitors a day would a typical forum on a website not using persistent connects be able to handle?
My guess is maximum 500 users at one time online and 50,000 unique users a day.
Any opinions?
Thanks.
Persistent connections have nothing to do with web (HTTP) applications since they are all "stateless" connections. As far as how many connections the database server can handle is likely more reliant upon your server hardware than it is your database, provided you have written your applications and statements at optimized levels and have things configured correctly.
If it's the former, then here's my anwser:
From the MySQL manual:
The number of connections allowed is controlled by the max_connections system variable
The default is 100 connections.
The maximum number of connections MySQL can support depends on the quality of the thread library on a given platform. Linux or Solaris should be able to support 500-1000 simultaneous connections, depending on how much RAM you have and what your clients are doing. Static Linux binaries provided by MySQL AB can support up to 4000 connections.
----------------------
If it's the latter, then I would say: "I don't know", but I would add that, as the previous poster noted, you're probably going to be restricted by the absolute limits of your hardware before you run into problems with MySQL or forum software.
Don't quote me on that.