Difference between revisions of "Cache"

From Joomla! Documentation

m (External site links removed.)
Line 49: Line 49:
  
 
=References=
 
=References=
* [http://www.bzzzz.biz/blog/joomla/using-caching-in-joomla-extensions.bzzzz Using caching in joomla extensions]
 
* [http://www.theartofjoomla.com/joomla-caching-explained.html Joomla caching explained]
 
 
* [http://forum.joomla.org/viewtopic.php?f=428&t=326990&start=0 Better performance with joomla System Cache plugin (Joomla Forum)]
 
* [http://forum.joomla.org/viewtopic.php?f=428&t=326990&start=0 Better performance with joomla System Cache plugin (Joomla Forum)]
 
* [[JCache]]
 
* [[JCache]]

Revision as of 14:10, 11 March 2010

Quill icon.png
Content is Incomplete

This article or section is incomplete, which means it may be lacking information. You are welcome to assist in its completion by editing it as well. If this article or section has not been edited in several days, please consider helping complete the content.
This article was last edited by Chris Davenport (talk| contribs) 14 years ago. (Purge)

Joomla has different ways of caching "things". Here is an overview for administrators and developers, what, where and when..

For Administrators[edit]

A Joomla administrator can use these caches and options:

Page Caching[edit]

  • Configuration: Built-in Plugin (Extensions -> Plugin Manager -> System - Cache)
  • Caches: each whole page of your site
  • Based on: URL
  • More info:
    • Optional browser caching: Also caches on your visitors' browser/computer
    • Only caches pages for guest visitors (not for logged in visitors)

View Caching[edit]

  • Configuration: Global Config->Cache
  • Caches: each view of a component
  • Based on: URL, view, parameters, ...
  • More info: Component developers have to include this in their code to work. Mostly this is not done. The Joomla main content component uses this, but only for guest visitors of your site though this is not obligated for every component.

Module Caching[edit]

  • Configuration: Global Config->Cache
  • Caches: each module (individually customized via each module's Advanced Parameters)
  • Based on: ?
  • More info: You must disable it on some modules to avoid problems

Further Caching[edit]

If you want to check out other chache systems and possibilities, you might want to check out the third-party extensions around caching.

Caching engines or storages[edit]

  • Configuration: Global Config->Cache

Here you can choose which system you want your site to use for all caching. Current options are: APC, Eaccelorator, File, Memcache, XCache.

APC, for example, also caches your php opcode.


For Developers[edit]

The class JCache allows a lot of different sorts and levels of caching. The following sub-classes are made specifically, but you can add your own, or use the main one in many different ways.

Don't forget that the first level of cache encountered, will override any deeper caching. I suppose that too many levels is also counterproductive (to be verified though).

  • JCacheView caches and returns the output of a given view (in MVC). A cache id is automatically generated from the URI, specific view and its specific method, or you can give your own.

This can automatically be done via the base controller's display function. For example in the controller of your component:

class DeliciousController extends JController {
	function display() {
		parent::display(true); //true asks for caching.
	}
}
  • JCachePage caches and returns the body of the page.
  • JCacheCallback caches and returns the output and results of functions or methods.

If you want to cache queries, this is a good class for it, as illustrated here: Using caching to speed up your code

This is rather meant for caching a specific part of php code. It acts like an output buffer, but cached.

References[edit]