Re: [PHP-DEV] [PATCH] Disable the Zend memory cache

2003-09-02 Thread Andi Gutmans
Let's hold on this patch until we finish benchmarking. We might just "do the right thing" automagically. I prefer the user not to have to be smart about such internals. Andi At 12:46 PM 9/2/2003 +0300, Vesselin Atanasov wrote: Hello. The memory cache code in zend_alloc.c has serious problems wi

Re: [PHP-DEV] [PATCH] Disable the Zend memory cache

2003-09-02 Thread Zeev Suraski
At 12:46 02/09/2003, Vesselin Atanasov wrote: Hello. The memory cache code in zend_alloc.c has serious problems with memory fragmentation. When a big script is run which allocates both lots of small objects and a few big objects, the memory cache grows until the allowed limits (11 buckets x 256 bl

[PHP-DEV] [PATCH] Disable the Zend memory cache

2003-09-02 Thread Vesselin Atanasov
Hello. The memory cache code in zend_alloc.c has serious problems with memory fragmentation. When a big script is run which allocates both lots of small objects and a few big objects, the memory cache grows until the allowed limits (11 buckets x 256 blocks each) keeping all of the cached memory occ