> 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
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
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
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
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
5 matches
Mail list logo