Re: [PHP] apc and cli

2007-12-12 Thread Ravi Menon
Thanks for clarifying my doubts - the steps below sounds right to me. I was just considering the overall perf. of such php daemons and whether we can get some free perf. boost with that apc setting. Ravi On Dec 12, 2007 12:19 PM, Richard Lynch <[EMAIL PROTECTED]> wrote: > > On Wed, December 12,

Re: [PHP] apc and cli

2007-12-12 Thread Richard Lynch
On Wed, December 12, 2007 1:33 pm, Ravi Menon wrote: > We have long running daemons written in php ( cli, non-apache > contexts) with the typical pattern: > > while( !$shutdown ) > { > $c = new SomeClass; > > $c->process(); > } > > For performance reasons, would it help if apc.enable_cli is

Re: [PHP] apc and cli

2007-12-12 Thread Nathan Nobbe
On Dec 12, 2007 2:33 PM, Ravi Menon <[EMAIL PROTECTED]> wrote: > Hi, > > We have long running daemons written in php ( cli, non-apache > contexts) with the typical pattern: > > while( !$shutdown ) > { >$c = new SomeClass; > >$c->process(); > } > > For performance reasons, would it help if