vote up 0 vote down star

I have read the documentation for the CI Caching but still don't understand much about it. What exactly does it do, and what is the use of caching a dynamic website?

flag

1 Answer

vote up 3 vote down check

From wikipedia:

... a cache is a collection of data duplicating original values stored elsewhere or computed earlier, where the original data is expensive to fetch or to compute, compared to the cost of reading the cache.

A cache allows you to trade relatively expensive operations (complicated/multiple queries for example) for less expensive ones (reading a file / from memory). In dynamic websites a cache is often used just for that purpose (database IO to file IO).

Caching is useful when specific data is read often but updated seldom, and can be shared between many requests. Blog posts are an excellent example of this (created once, edited several times, read many times).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.