Re: [PHP] speeding a site with lots of includes

2001-03-06 Thread Christian Reiniger
On Monday 05 March 2001 23:20, you wrote: An app I am currently developing has grown a lot. It currently handles aproximately 12 includes, more or less 13 thousand lines of code. By doing some benchmarks, i realized that the bottleneck is the include() payload. Are you sure it's the

[PHP] speeding a site with lots of includes

2001-03-05 Thread Eduardo Dominguez
An app I am currently developing has grown a lot. It currently handles aproximately 12 includes, more or less 13 thousand lines of code. By doing some benchmarks, i realized that the bottleneck is the include() payload. How can I optimize a program like this one ? thanks in advance -- PHP

Re: [PHP] speeding a site with lots of includes

2001-03-05 Thread Chris Lee
I found 0.002 for the first include, and 0.0001 second for a refresh not to bad. PIII-500 512mb ram PHP-4.0.4pl1 no zend-optimizer, no zend-cache the refresh is less because linux caches the file in it internal buffer. I wouldnt consider 0.002sec that bad of a hit. you could have