Author Topic: Looking for more info on "Page Caching" solution using files  (Read 499 times)

0 Members and 1 Guest are viewing this topic.

Offline xtianTopic starter

  • Irregular
  • Posts: 27
    • View Profile
Looking for more info on "Page Caching" solution using files
« on: August 04, 2010, 04:36:37 PM »
I'm looking for some advise and focus to my search for a PHP caching solution. The trouble is most searches return web application cache problems, and time-expire solutions (for constantly updated sites). What I'm looking for,  the cache would never "expire". When the site admin makes a change a new cache file would replace the old version. Help me understand what I'm thinking here so I can ask the right questions. Chris

Offline petroz

  • Enthusiast
  • Posts: 178
    • View Profile
Re: Looking for more info on "Page Caching" solution using files
« Reply #1 on: August 10, 2010, 11:52:33 PM »
Are you using a framework?

Offline xtianTopic starter

  • Irregular
  • Posts: 27
    • View Profile
Re: Looking for more info on "Page Caching" solution using files
« Reply #2 on: August 16, 2010, 03:15:30 PM »
Nope. This is all custom made from tutorials and code scripties I find under the mattress.
X

[On a personal note about frameworks... I've never read a tutorial or article really explaining how to make frameworks work for what I wanted, even before I fully understood what I wanted.  :P  I'm self taught in PHP and programming in general. When I decided to start learning PHP, I had to make a choice where to start and I went with hand coding.]

Offline petroz

  • Enthusiast
  • Posts: 178
    • View Profile
Re: Looking for more info on "Page Caching" solution using files
« Reply #3 on: August 17, 2010, 02:06:52 PM »
Cacheing is usually very simple with the right framework. Most of what I have seen done is basically taking your dynamic pages and writing them to static HTML pages. If your working in a mvc environment, it shouldn't be too hard. But like I said, frameworks make this stuff really really easy.