Scaling PHP Up, Out, and Around
blog.phpfog.com
Scaling PHP Up, Out, and Around
1–10 of 18 posts
Re: Scaling PHP Up, Out, and Around
#2Re: Scaling PHP Up, Out, and Around
#3Thanks man.... I have ammmo for the arguments now.:-)
Re: Scaling PHP Up, Out, and Around
#4I am looking forward for a service like this, any idea when this will be open to the general public?
Re: Scaling PHP Up, Out, and Around
#5Just a quick note: on the top of the page there is a broken link to "Pricing". I am looking forward for a service like this, any idea when this will be open to the general public?
Re: Scaling PHP Up, Out, and Around
#6Re: Scaling PHP Up, Out, and Around
#7This doesn't really make sense -- maintaining a TCP connection requires no "tubes"; the limit comes from finite state storage: a finite state table, a finite number of file descriptors, and a finite amount of RAM in which to store the application-level connection contexts. These numbers turn out to be Really Fucking Big, so this is probably not affecting your application unless you are Google's IMAP servers or something.
Re: Scaling PHP Up, Out, and Around
#8Web servers are limited in the number of concurrent connections they can maintain (tubes aren’t big enough). This doesn't really make sense -- maintaining a TCP connection requires no "tubes"; the limit comes from finite state storage: a finite state table, a finite number of file descriptors, and a finite amount of RAM in which to store the application-level connection contexts. These numbers turn out to be Really F…
Re: Scaling PHP Up, Out, and Around
#9Re: Scaling PHP Up, Out, and Around
#10How about adding hiphop-php from Facebook?