By default, Foswiki pages are delivered to the browser using HTML, which is regenerated from the data stored in Foswiki each time the page is requested. Page caching is the process of storing (caching) this HTML on the server, as and when it is generated, so that the next time someone asks for the same page it can be delivered from the cache instead of having to be re-rendered from scratch. Page caching can significantly improve the performance of a Foswiki site, especially where most requests are views (this is normal on most sites). Since version 1.1, Foswiki has built-in page caching.
For most Foswiki installations you can enable page caching by simply selecting the{Cache}{Enabled}
option and connecting it to a database backend
in the Tuning section of configure
. However to
get the most out of the cache, you need to understand what it is doing, and may
want to tune the cache options for your site.
When Foswiki generates a page, it may refer to a lot of content stored in the
Foswiki database. For example, a topic 'MyTopic' may be rendered differently
depending on a setting in the web's WebPreferences, which is itself a topic. If
WebPreferences were to be edited, then the cache of MyTopic would have to be
regenerated, because the setting it depends on might have been changed during
the edit. For an average page there are a large number of these dependencies
that have to be tracked. This tracking has to be fast, so the cache uses a
database engine to record the dependencies and save the rendered pages.
CACHEEXPIRE
preference variable or the cache_expire
url parameter.
As usual, this variable can be set per topic, per web, or per user as you like. By default the
expiry time falls back to infinite so that pages are invalidated only by the normal
displacement strategy. Note that whichever constraint - either the expiry time or the
refreshing strategy - holds first will the page be refreshed.
The CACHEEXPIRE
value can be specified using either absolute or relative values.
Most of the time the relative timespan makes most sense in which case the page is
cached for that time and will be recomputed afterwards.
Examples for valid cache expiry values are:
Firstly, the main page will be cached with asynchronously computed fragments taken out. As a consequence the main page will have less dependencies on additional content and is less likely to be invalidated from the page cache.
Second, each fragment requested via an ajax call and inserted into the main page dynamically is computed and cached separately, each with its own set of dependencies. So when one fragment's dependency is fired (one of its ingredients has been updated), then only this single fragment and not the complete page nor the other fragments need recomputation.
The general pattern for asynchronously loaded page fragments looks like this:
<verbatim class="jqLoader {section:'name_of_section'}"> %STARTSECTION{"name_of_section"}% %SEARCH{ ... }% %ENDSECTION{"name_of_section"}% </verbatim>See JQueryLoader for more information.
<dirtyarea>...</dirtyarea>
tags. Foswiki markup within a dirty
area is stored unrendered in the cache, and only rendered when the topic is
served from the cache. For example,
This page was cached at %SERVERTIME%. <dirtyarea> The current time of your request is %SERVERTIME%. </dirtyarea>ensures that the cache will never store the SERVERTIME expression inside the
<dirtyarea> section
, forcing it to be
re-computed every time the page is served. So both times will diverge the longer the
page stays in cache.
{Cache}{Enabled}
every page
is cached. This might be too aggressive for some topics or webs that you want to exclude
from page caching all together.
First choice is to try and figure out how to make a page cacheable at least partial using dirty areas.
If that doesn't work out or is simply to complicated to get right, a page or a complete web
can be flagged to be non-cacheable all together. That way they won't ever end up in the cache store.
This is achieved by using the preference variable CACHEABLE
in a topic, the SitePreferences or any WebPreferences like this:
* Set CACHEABLE = offAdding it to a single topic will prevent this page from being cached. Adding it to WebPreferences will disable the page cache for the complete web. Adding it to SitePreferences will switch off the page cache for the complete site. This makes sense only when switching on the page cache explicitly for a subset of pages and webs again using
* Set CACHEABLE = on
refresh
url parameter, which works with all scripts
that produce cacheable output. You may force the current topic to be recomputed
by adding refresh=on
or refresh=cache
to an url.
<a href="%SCRIPTURLPATH{"view"}%/%WEB%/%TOPIC%?refresh=cache">Refresh this page.</a>The complete cache for all topics can be cleared as well using
refresh=all
.
This action is restricted to the admin
super user, and to members of the AdminGroup.
Foswiki::Func::saveTopic
API, you can
(carefully) call update from the commandline:
eg. sudo -u www ./view /Tasks/Item12035 -refresh=cache
.
NOTE it is very important that you run this as the same user that the web server uses to access foswiki (and the cache).
see CommandAndCGIScripts
There are a few things to keep in mind when caching a page with a SEARCH:
To avoid this effect you can
CACHEEXPIRE
timespan after which the SEARCH is performed again; in the meantime the same cache results will be displayed
This class of SEARCH-like expressions all show the same caching artefact: results are not 100% up-to-date. At the same time these expressions are the candidates that benefit the most from caching as their computation are the most expensive ones.
rest
script returns it's result using return
, then the result will be cached.
If the function returns an empty result or undef, then the function is totally responsible for its own output, and there is no caching.
{Cache}{Implementation}
setting in configure
.
It offers a set of standard connectors, i.e. using the perl DBI interface, to store meta data about cached
pages in a database. For larger sites in production use, you should choose either Foswiki::PageCache::DBI::MySQL
or Foswiki::PageCache::DBI::PostgreSQL
. For smaller sites and personal wikis, Foswiki::PageCache::DBI::SQLite
is approriate as well.
working/sqllite.db
, and topics are cached in the working/cache
directory. There is one configuration parameter that can be changed: {Cache}{DBI}{SQLite}{Filename} = '$Foswiki::cfg{WorkingDir}/sqlite.db';
?refresh=all
url option does not reclaim space.
Reclaim space by using the sqlite3 vacuum
command. Be sure to run it as the
web-server user:
cd /path/to/foswiki/working sudo -u www-data sqlite3 sqlite.db "VACUUM;"Caution: This can run a long time and can be disruptive to the wiki. You can also manually clear the cache by:
working/sqlite.db
file
working/cache
directory
foswikihost: ~ $ mysql -u root -p Enter password: ........ Welcome to the MySQL monitor. Commands end with ; or \g. mysql> create database foswiki_db; Query OK, 1 row affected (0.00 sec) mysql> grant usage on *.* to foswiki@localhost identified by 'foswikipass'; Query OK, 0 rows affected (0.00 sec) mysql> grant all privileges on foswiki_db.* to foswiki@localhost ; Query OK, 0 rows affected (0.00 sec) mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) mysql> exit Bye
{Cache}{DBI}{MySQL}{Database} = 'foswiki_db';
{Cache}{DBI}{MySQL}{Host} = 'localhost';
{Cache}{DBI}{MySQL}{Password} = 'foswikipass';
{Cache}{DBI}{MySQL}{Port} = ”;
{Cache}{DBI}{MySQL}{Username} = 'foswiki';
user@server: sudo su -- postgres postgres@server:/root$ createuser foswiki --pwprompt postgres@server:/root$ psql psql (9.4.4) Type "help" for help. postgres=# alter user foswiki with password 'foswikipass'; ALTER ROLE postgres=# create database foswiki; CREATE DATABASE \q
{Cache}{DBI}{PostgreSQL}{Database} = 'foswiki';
{Cache}{DBI}{PostgreSQL}{Host} = 'localhost';
{Cache}{DBI}{PostgreSQL}{Password} = 'foswikipass';
{Cache}{DBI}{PostgreSQL}{Port} = ”;
{Cache}{DBI}{PostgreSQL}{Username} = 'foswiki';
{Cache}{DependencyFilter}
EXPERT setting in configure
defines a regular
expression that, when matched by the name of a topic, exclude the topic from
dependencies in the cache. This helps to reduce the number of topics a page
depends on, but at a higher risk that you may experience unwanted caching
effects. These effects may be seen where a cached page is delivered that does
not reflect changes made in a topic that matched the filter.
The default value for {Cache}{DependencyFilter}
is set to
System\..*|Trash\..*|TWiki\..*So this will disable any dependencies to topics that match this expression.
{Cache}{WebDependencies}
EXPERT setting in configure
. Whenever any topic
in the same web is saved, the cached versions of the listed topics are removed
from the cache as well.
Web dependencies can also be specified using the WEBDEPENDENCIES
web
preference setting. If WEBDEPENDENCIES
is set, it overrides the setting of
{Cache}{WebDependencies}
for that web. To use the preference set it to a
comma separated list of topics (no wildcards are allowed). Example,
The default value for {Cache}{WebDependencies}
is set to WebRss,
WebAtom, WebTopicList, WebIndex, WebSearch and WebSearchAdvanced.
This means, that for instance WebRss is a page that is cached the first time it is accessed, so every further request is speeded up. When one of the topics in the web it is in changes, a new rss feed is provided containing the most recent update as expected.
Example:* Set WEBDEPENDENCIES = WebRss, WebAtom, WebTopicList, WebIndex, WebSearch, WebSearchAdvanced, MyOwnProtectedTopic
This will add MyOwnProtectedTopic to the set of default topics to be refreshed on every change in the web it is in.
WEBLIST
macro, or links to a
large number of pages. These are tracked so that when a topic is added or
removed, the referencing pages will be refreshed to get the correct link to
the topic.
An optional (expert) configuration parameter {Cache}{TrackInternalLinks}
can be set to disable tracking these links for guests or for everyone. For
sites exposed to the Internet and search bot traffic, change this setting
from on
to authenticated
to ignore links in topics viewed by
guests. The setting off
will disable all topic reference tracking, and is
not recommended.
{HttpCompress}
option is enabled in configure
, even
when the cache is not enabled.
Content compression makes even more sense when used with the cache, as the
cache by default stores pages on disk already compressed, so serving a
compressed page is very fast. However if you don't have Compress::Zlib
, or
you're not using {HttpCompress}
and do not care about disk space, you can
disable this compression by disabling the {Cache}{Compress}
EXPERT option
in configure
.
Note that only pages without any dirty areas will be
compressed. Any other page will be transmitted uncompressed. Note also, that
compressing a page requires computation on both sides, the server performing
the compression and the browser to uncompress the received HTML before
rendering it. So only use page compression when network bandwidth is a
bottleneck. Do not use compression on fast network connections that can easily
deliver the same content uncompressed.
Etag
and Last-Modified
headers will be
added to the response. So whenever a page is requested again, using a request
that includes the If-None-Match
and/or If-Modified-Since
request headers,
then Foswiki will answer with a 304 - Not modified message
and an empty body.
This tells the browser to reuse the page stored in its own client-side cache.
The context consists of:
cache_ignore
request parameter
Note that this also means that users will never share cached pages among each other. This separation is required to prevent users from seeing pages that have been rendered with different access rights to the content than their own. For instance, a SEARCH will show rather differnt results based on the concrete clearance on the content. When such a page is cached it must only be retrieved for the identical user it was generated for the first time.
Compress::Zlib
,
You will need either of one the DBD:: drivers to make use of page caching.