Table of Contents

Caching

DokuWiki speeds up browsing through the wiki by caching parsed files. If a currently cached version of a document exists, this cached copy is delivered instead of parsing the data again. On editing and previewing no cache is used.

Purging the cache

To force the recaching of a single page just add the parameter purge to the URL. Example:

http://www.example.com/namespace/page?purge=true

Some of your URL might look like this ?id=pagename then use & between parameters. Note that order does not matter. Both examples below are valid and produce the same result:

http://localhost/dokuwiki/doku.php?id=my_page_name&purge=true
http://localhost/dokuwiki/doku.php?purge=true&id=my_page_name

To force recaching of all pages, including page instructions, touch1) the local configuration file, conf/local.php. Saving the configuration settings form over the admin interface will have the same effect.

To only force recaching of page xhtml, touch inc/parser/xhtml.php.

To purge the editor toolbar (and other cached JavaScript) call

http://www.example.com/lib/exe/js.php?purge=true

and clean up your browser's cache (Ctrl+F5) as well. This especially helps if a new button introduced by a plugin does not show up.

You can also clear the CSS cache in the same way:

http://www.example.com/lib/exe/css.php?purge=true

Two-Stage-Caching

DokuWiki uses two cache files per page. To understand this you need to know that a page is parsed to an intermediate instruction format first before it is rendered to XHTML. DokuWiki caches both – the instructions and the rendered XHTML.

Location

The XHTML and instruction cache are located in data/cache/* 5). The files end in .xhtml, .i. Other files are also stored under the cache directory, including:

Metadata

DokuWiki can also store metadata e.g. additional information of pages. Metadata is generated from the Instruction Cache, of which the XHTML of a page is generated too. The metadata has its own caching mechanism.

Metadata can furthermore be added to the Metadata Index. Here is the added information searchable.

Images

To improve the performance for the user, DokuWiki tries to cache external images. If someone wants to use an external image in the wiki content without caching or cache the image with a certain interval, there is syntax to influence the caching behavior.

FIXME howto link (external) images in plugins with caching.

Plugins

Plugins can influence cache use via the PARSER_CACHE_USE event. This allows plugins which introduce additional dependencies for specific pages to check those dependencies and force DokuWiki to refresh the page when it wouldn't normally.

Developer note

A simple measure to avoid caching is that plugin developers turn off caching completely. This is discouraged due to the extra rendering activities, in particular adversely for high traffic wikis. Instead of the plugin developers make use of the functionality to influence the cache by checking (themself formulated) dependencies. Therefore a syntax plugin will need to:

Caching itself is handled by the Cache object6). The key parts of that object of interest to plugins are:

Individual Page Cache Expiry

As described above, DokuWiki verifies the validity of the cache rather than actively expiring the cache. However, the page xhtml is dependent on its metadata. That is, if the metadata file is more recent than the cache, DokuWiki will determine that the cache is invalid and re-render the page. So, we can update the metadata to expire the cache.

/* code to expire the cached xhtml of page ns:page
 * $id = 'ns:page';
 * $data = array('cache' => 'expire'); // the metadata being added
 * $render = false;     // no need to re-render metadata now
 * $persistent = false; // this change doesn't need to persist passed
 *                         the next metadata render.
 */
p_set_metadata($id, $data, $render, $persistent);
1)
Non-Unix users can simply open the file and save it again – the idea is to change the file's timestamp
2)
conf/dokuwiki.php & conf/local.php
3)
inc/parser/parser.php & inc/parser/handler.php
4)
inc/parser/xhtml & inc/parser/metadata
5)
* being a single character directory name,
data being configurable by savedir
6)
inc/Cache/Cache.php