RE: [PHP] PHP Cache (was PHP load to high on server)

2006-01-19 Thread Richard Lynch
On Thu, January 19, 2006 12:56 am, Albert wrote: > Jochem Maas wrote: >> take note that APC does 2 things: >> >> 1. op code caching >> 2. manage some shared memory (a central place where you can stick >> stuff >> that needs to be read again and again and again; but doesn't need >> updating >> very

RE: [PHP] PHP Cache (was PHP load to high on server)

2006-01-19 Thread Albert
Jochem Maas wrote: > take note that APC does 2 things: > > 1. op code caching > 2. manage some shared memory (a central place where you can stick stuff > that needs to be read again and again and again; but doesn't need updating > very often) "pear install apc" failed without reason. I ended up do

Re: [PHP] PHP Cache (was PHP load to high on server)

2006-01-18 Thread Ruben Rubio Rey
Did u tried memcached? http://www.danga.com/memcached/ Albert wrote: I wrote: I am running SuSE 9.2 (Kernel 2.6.8-24-default) with Apache 2.0.50 and PHP 4.3.8 (as an Apache module) on a Celeron 900 with 304MB RAM. This machine is used for testing. We have made some changes to our PHP appl

RE: [PHP] PHP Cache (was PHP load to high on server)

2006-01-18 Thread Richard Lynch
On Wed, January 18, 2006 9:37 am, Albert wrote: > For this I wanted to use mmCache (actually I want to use Zend > Performance > Suite but first I need to prove that it is worth $ 1000 per CPU and > from the > stats on the mmCache site mmCache is faster...) but it seems that the > mmCache project ha

RE: [PHP] PHP Cache (was PHP load to high on server)

2006-01-18 Thread Stefan Moldoveanu
http://eaccelerator.net/HomeUk Actually, is the former mmCache with a new team of developers and some impovements. The last known version of mmCache I've played with one week ago core dumped the httpd on ./apachectl stop. The last stable version of eAccelerator (0.9.3, I think) works like a cha

Re: [PHP] PHP Cache (was PHP load to high on server)

2006-01-18 Thread Jochem Maas
on your *nix cmdline type this: pear install apc (if you don't have pear installed then you should fix that first ;-) now read here about how to use it: http://php.net/apc I love it even though it crashes when caching the opcodes of certain class files (php5 files that make use

RE: [PHP] PHP Cache (was PHP load to high on server)

2006-01-18 Thread Albert
I wrote: > I am running SuSE 9.2 (Kernel 2.6.8-24-default) with Apache 2.0.50 and PHP > 4.3.8 (as an Apache module) on a Celeron 900 with 304MB RAM. This machine > is used for testing. We have made some changes to our PHP application and > now the machine is having trouble serving the pages. Apac