Hello,

On 02/09/2004 11:36 PM, Merlin wrote:
I do have a performance question regarding php processing. There are some sites on the net like google, heise and others which are incredible fast in response time. Of course companies like google are running totally other systems, but there are smaller sites and companies doing almost the same verry fast page delivery.

Now I am wondering how this is possible on a LAMP application. My site is not slow, but also not fast. I was reading about php accellerator. Can anybody recommend this tool, is it complicated to install and configure? Are there any speed gains and are ther tools to messure the page delivery times?

Most details about Google and other sites speed do not have much to do the actual code that generates the pages. For instance, they use distributed data centers and DNS around the world to make the servers that you actually access be closer to you and start serving pages sooner.


They also use compressed pages to reduce the actual size of the information that is transferred. You can use compression of pages in PHP too, but in my experience it is much simpler to use a module of your Web server that does that job transparently, like for instance mod_gzip for Apache.

Search engines also do not use SQL databases. Usually they just lookup static indexes to speedup lookup.

Sites like Google also avoid using many images. Images can make a site look nicer but they are often irrelevant and retard the site loading.


--


Regards,
Manuel Lemos

Free ready to use OOP components written in PHP
http://www.phpclasses.org/

Metastorage - Data object relational mapping layer generator
http://www.meta-language.net/metastorage.html

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to