From 283d3c82ce39e7b3977757aca92fbd1b41e2c120 Mon Sep 17 00:00:00 2001 From: Kenny Katzgrau Date: Sun, 20 Feb 2011 18:12:59 -0500 Subject: Fixed docs specifying cache location (sys/cache v app/cache) --- user_guide/general/caching.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_guide/general/caching.html b/user_guide/general/caching.html index 440896bb7..9f49b95d6 100644 --- a/user_guide/general/caching.html +++ b/user_guide/general/caching.html @@ -68,7 +68,7 @@ By caching your pages, since they are saved in their fully rendered state, you c

How Does Caching Work?

Caching can be enabled on a per-page basis, and you can set the length of time that a page should remain cached before being refreshed. -When a page is loaded for the first time, the cache file will be written to your system/cache folder. On subsequent page loads the cache file will be retrieved +When a page is loaded for the first time, the cache file will be written to your application/cache folder. On subsequent page loads the cache file will be retrieved and sent to the requesting user's browser. If it has expired, it will be deleted and refreshed before being sent to the browser.

Note: The Benchmark tag is not cached so you can still view your page load speed when caching is enabled.

@@ -86,7 +86,7 @@ most logical to you. Once the tag is in place, your pages will begin being cache

Warning: Because of the way CodeIgniter stores content for output, caching will only work if you are generating display for your controller with a view.

Note: Before the cache files can be written you must set the file permissions on your -system/cache folder such that it is writable.

+application/cache folder such that it is writable.

Deleting Caches

-- cgit v1.2.3-24-g4f1b