My question is this: By having so many SSI includes on my page using the above method, am I causing an unnecessary load on the server, and will this affect the time it takes for my pages to load? Because we all know what effect a slow loading page will have on visitor retention (or even getting people to stick around at all while the page is loading!)...
I'm thrilled with the fact that my pages will be super easy to update now, but don't want to sacrifice it with page loading time. Thanks in advance for your answers!
Dave.
p.s. Another bonus with doing SSI's now, is that I've been forced to fix all of the glaring html errors the pages had and am now validating them. Hopefully this has a positive effect on placement in the SERP's? (Who knows what is involved in the SE's algos :)
-j.
There are cases of the same script going from around 6 hits per second to 243 per second hits using the same resources under full mod_perl.
If one has "dirty" scripts mod_perl can be used with the PerlRun method. Both methods keep Perl loaded.
Essentially, use of SSI adds to CPU load. Hard disk activity will be affected slightly but whether this is beneficial or not depends on what the alternative is. In any case, the change in hard disk activity is likely to be so small that it cannot easily be measured.
Kaled.