Hey, I have been playing around with Linode and a LAMP setup now for the past few weeks. I am considering moving my iOS backend from Parse.com to a Linode setup. I would like to know how a 1GB setup will perform.
My app will execute a single PHP script, and most the functions performed will be simple MySQL queries. Either INSERT or SELECT. If for example an average user executes the script on my Linode 10 times a day how much traffic could the 1GB Linode handle? I've noticed in the recommended setup the apache2.conf is like so:
Code:
KeepAlive Off
<IfModule mpm_prefork_module>
StartServers 2
MinSpareServers 6
MaxSpareServers 12
MaxClients 30
MaxRequestsPerChild 3000
</IfModule>
I'm extremely new to server management, but with MaxClients set to 30 does that mean only 30 people can execute a query at the same time? Any pointers on all this would be greatly appreciated. Thanks!