cache

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
ragnis12
Forum Newbie
Posts: 12
Joined: Tue Jun 17, 2008 4:14 am

cache

Post by ragnis12 »

what is the cache system good for?
User avatar
onion2k
Jedi Mod
Posts: 5263
Joined: Tue Dec 21, 2004 5:03 pm
Location: usrlab.com

Re: cache

Post by onion2k »

Caching things. :wink:

Caching means the server saves a copy of whatever is cached in a way that it can retrieve faster. So things speed up. However, if you're not careful the version that's cached will be loaded rather than the latest version, so users can see old content.
Post Reply