| Site Maintenance Program updates, securing your website, creating backups. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread |
|
|
#13 (permalink) |
|
Registered User
Comfy Contributor
Joined in Jun 2006
Lives in Idaho
Hosted on PASS61
198 posts
Gave thanks: 16
Thanked 2 times
|
cacheing
you cacheing mostly helps with those big php portals (probably like Joomla) where instead of runningthe php script each time there is a visitor ........
1) run php script to determin what content should be displayed, 2) hit the database and fetch relevant content 3) format per php layout instructions 4) send to client browser a cache will store the content of that page (the actual HTML that was generated by all the above steps) in the DB or somewhere else (temp file, etc) so that the next visitor only does the following steps: 1) Run php to fetch cached version of the page 2) send cached page to client browser Someone more knowledgable in DB cacheing may correct me but I think that is the general idea behind cacheing. If you site does not have dynamic content, then there is nothign to cache.... everything alreayd is just a file on the server jason
__________________
pass61: Bucks Of The Northwest Chateau HOA Idaho Digital Productions Estrela Artists MyPaperCamera |
|
|
|
|
|
#14 (permalink) |
|
Surpass Fan
Comfy Contributor
Joined in Oct 2004
148 posts
Gave thanks: 2
Thanked 2 times
|
From browsing your site, it doesn't look like CPU intensive (high CPU load).
Since you are serving images the problem you could run into in the future is running out of bandwidth (exceeding 30GB+ per month). Then you can look at serving the images from a third party like Amazon S3 which is a very cost efficient way to serve a lot of content. http://www.codinghorror.com/blog/archives/000808.html
__________________
David Kaspar | SH60 |
|
|
|