From 43a823eb92ef476da5126413e63df1e7a863fe69 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 27 Sep 2006 01:57:10 +0000 Subject: --- user_guide/database/caching.html | 105 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 user_guide/database/caching.html (limited to 'user_guide/database/caching.html') diff --git a/user_guide/database/caching.html b/user_guide/database/caching.html new file mode 100644 index 000000000..0c797026f --- /dev/null +++ b/user_guide/database/caching.html @@ -0,0 +1,105 @@ + + + + +Code Igniter User Guide + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + +

Code Igniter User Guide Version 1.5.0

+
+ + + + + + + + + +
+ + + +
+ + + +
+ +

Database Caching Class

+ +

The Database Caching Class contains functions that permit you to cache your queries.

+ +

Important:  This class must be initialized independently since it is a separate class from the main Database class. +More info below...

+ + +

Initializing the Caching Class

+ +

To initialize this class please use the following code:

+ +$this->load->dbcache() + +

You can also autoload this class from within your config/autoload.php file by specifying dbcache in the $autoload['libraries'] array.

+ +

Once initialized you will access the functions using the $this->dbutil object:

+ +$this->dbcache->some_function() + + + + + +
+ + + + + + + \ No newline at end of file -- cgit v1.2.3-24-g4f1b