internal package Foswiki::Contrib::CacheContrib

Foswiki::Contrib::CacheContrib

Interface to the caching services. This consists of two parts:

  1. basic caching: cache computational results for a short period of time for faster access
  2. a caching user agent: fetch external resources and cache them

Both of these requirements happen so often in Foswiki plugins that they have been provided as a basic service to be accessed by third party plugins. For instance, ImagePlugin caches image geometries as analysing and extracting this information from pictures can be quite expensive. NumberPlugin fetches exchange rates of currencies from an external provider and caches them locally. FeedPlugin fetches RSS and Atom feeds and caches them locally when rerendering them on a Foswiki page. SolrPlugin serializes binary document formats while indexing their content with interim results cached locally to speed up reindexing those documents.

getUserAgent() → $ua

returns a singleton caching user agent compatible to CPAN:LWP::UserAgent. Note, the returned user agent uses a cache in the fixed namespace "UserAgent". So you might access its cache via Foswiki::Contrib::CacheContrib::getCache("UserAgent") Cache entries are using the URL of the external resource being fetched. See also Foswiki::Contrib::CacheContrib::getExternalResource()

getCache($namespace) → $cache

returns a CHI cache object for the given namespace.

my $cache = Foswiki::Contrib::CacheContrib::getCache("ImagePlugin");

getExternalResource($url, …) → $response

Fetch an external resource using the caching UserAgent. This is equivalent to Foswiki::Func::getExternalResource() with just adding caching. It basically is compatible with LWP::UserAgent::get.

Usage:

my $response = Foswiki::Contrib::CacheContrib::getExternalResource($url);

throw Error::Simple("http error fetching $url: ".$response->code." - ".$response->status_line)
  unless $response->is_success;

my $content = $response->decoded_content();

clearCache($namespace)

clears the cache for the given namespace

purgeCache($namespace)

purges expired entries of the cache for the given namespace

Topic revision: r1 - 27 Feb 2018, UnknownUser
This site is powered by FoswikiCopyright © by the contributing authors. All material on this site is the property of the contributing authors.
Ideas, requests, problems regarding Foswiki? Send feedback