Re: [PHP] PHP scalability problem

2009-05-27 Thread hessiess
> What I am trying to achieve is to have the server do less processing. > Like I said PHP is a server side scripting language and each time a > request is made a process is spawned and processes are heavy weight as > compared to a thread which is a light weight process. So I want to take > away muc

Re: [PHP] PHP scalability problem

2009-05-27 Thread Daniel Brown
On Tue, May 26, 2009 at 23:26, tRace DOliveira wrote: > What I am trying to achieve is to have the server do less processing. Like I > said PHP is a server side scripting language and each time a request is made > a process is spawned and processes are heavy weight as compared to a thread > whi

Re: [PHP] PHP scalability problem

2009-05-27 Thread Marc Steinert
Have a look at APC. APC is a bytecode cache, that stores bytecode generated of your PHP scripts, so that your PHP code don't need be parsed every time the script is invoked. http://pecl.php.net/package/apc I was able to increase the performance of my PHP scripts dramatically. Greetings from Ge

Re: [PHP] PHP scalability problem

2009-05-26 Thread Per Jessen
tRace DOliveira wrote: > What I am trying to achieve is to have the server do less processing. > Like I said PHP is a server side scripting language and each time a > request is made a process is spawned and processes are heavy weight as > compared to a thread which is a light weight process. On

[PHP] PHP scalability problem

2009-05-26 Thread tRace DOliveira
What I am trying to achieve is to have the server do less processing. Like I said PHP is a server side scripting language and each time a request is made a process is spawned and processes are heavy weight as compared to a thread which is a light weight process. So I want to take away much proce