PHP speed optimisation.
Posted
by Petah
on Stack Overflow
See other posts from Stack Overflow
or by Petah
Published on 2010-06-17T11:04:02Z
Indexed on
2010/06/17
11:13 UTC
Read the original article
Hit count: 199
Hi,
Im wondering about speed optimization in PHP.
I have a series of files that are requested every page load. On average there are 20 files. Each file must be read an parsed if they have changed. And this is excluding that standard files required for a web page (HTML, CSS, images, etc).
EG -> client requests page -> server outputs html, css, images -> server outputs dynamic content (20+/- files combined and minified).
What would be the best way to serve these files as fast as possible?
© Stack Overflow or respective owner