Cantaloupe offers a sophisticated and customizable caching subsystem that is capable of meeting a variety of needs while remaining easy to use. Three tiers of cache are available:
Cantaloupe can provide caching hints to clients using a Cache-Control
response header, which is configurable via the
cache.client.*
keys in the configuration file. To enable this header, set the cache.client.enabled
key to true
.
The default settings look something like this:
These are reasonable defaults that tell clients they can keep cached images for 30 days (2592000 seconds).
The Cache-Control
header works as follows:
cache.client.enabled = true
Cache-Control
header is returned according to the cache.client.*
keys in the configuration.Cache-Control
header.Cache-Control: must-revalidate,no-cache,no-store
cache.client.enabled = false
Cache-Control
header.Cache-Control: must-revalidate,no-cache,no-store
In a typical image server configuration, source images will be served from a local filesystem using FilesystemResolver. There, they are already as local as they can be, so there would be no point in caching them (although a derivative cache could still be of great benefit).
As explained in the Resolvers section, though, images do not have to be served from a local filesystem—they can also be served from a remote web server, cloud storage, or what have you. The source cache can be beneficial when one of these non-filesystem sources performs poorer than ideal. Setting cache.source
to FilesystemCache
will cause all source images from non-FilesystemResolvers to be automatically downloaded and stored in the source cache.
Another reason for a source cache is to work around the incompatibility between certain processors and resolvers. Some processors are only capable of reading source images located on the filesystem. By setting StreamProcessor.retrieval_strategy
to CacheStrategy
, and then configuring FilesystemCache, the source cache will be utilized to deal with incompatible processor/resolver situations by automatically pre-downloading source images, This makes it possible to use something like OpenJpegProcessor with AmazonS3Resolver.
Idealy, all cloud services and so on would offer faster-than-light-latency seekable-stream access, all image readers would be able to read from them as efficiently as from the local filesystem, and there would be no need to deal with the added complexity of a source cache. But, that is not the reality. Cantaloupe tries to keep things simple by integrating the source cache into the larger caching architecture, so all of the information about modes of operation and maintenance is applicable to both the source and derivative caches.
Note that unlike the derivative cache, there is only one available source cache implementation—FilesystemCache—and it will be used independently of the derivative cache.
The derivative cache caches post-processed images in order to spare the computational expense of processing the same image request over and over again. Derivative caches are pluggable, in order to enable different cache stores.
Derivative caching is recommended in production, as it will greatly reduce load on the server and improve response times accordingly. There are other ways of caching derivatives, such as by using a caching reverse proxy, but the built-in derivative cache is custom-tailored for this application and easy enough to set up.
Derivative caching is disabled by default. To enable it, set cache.derivative
to the name of a cache, such as FilesystemCache.
The derivative cache can be bypassed on a per-request basis by supplying a cache=false
query parameter in the URL. When this parameter is present, the derivative cache will not be read from, nor written to, whether or not it is enabled. The Cache-Control
header will also be omitted from responses.
The source and derivative caches can be configured to operate in one of two ways:
cache.server.resolve_first = true
)cache.server.resolve_first = false
)Because cached content is not automatically deleted after expiring, there is likely to be a certain amount of expired content taking up space in the cache at any given time. Without periodic maintenance, the amount can only grow. If this is a problem, it can be dealt with manually or automatically.
To purge all expired content, launch with the -Dcantaloupe.cache.purge_expired
option.
To purge all content, expired or not, launch with the -Dcantaloupe.cache.purge
option.
To purge all content related to a given identifier, expired or not, there are two options:
-Dcantaloupe.cache.purge=identifier
option.(Both of these were added in 3.3.)
Caches are careful not to leave miscellaneous detritus (like temp files) lying around. In case anything slips through, the above commands will take care of it. To only clean the cache while leaving all content alone, expired or not, launch with the -Dcantaloupe.cache.clean
option.
When Cantaloupe is launched with any of these arguments, it will run in a special mode in which the web server will not be started, and exit when done. Thus, any of these tasks can be run in a separate process, on the live cache store, while the main server instance remains running.
Since version 2.2, a "cache worker" is available that will periodically clean and purge expired items from the cache automatically. (See the cache.server.worker.*
configuration options.)
Depending on the amount of source content served, the varieties of derivatives generated, the time-to-live setting, and how often maintenance is performed, the cache may grow very large. The image server does not track its size, as this would be either expensive, or, for some cache implementations, impossible. Managing the cache size is therefore the responsibility of the administrator, and it can be accomplished by any combination of:
cache.server.ttl_seconds
configuration key);FilesystemCache caches content in a filesystem tree. The tree structure looks like:
FilesystemCache.pathname
/
FilesystemCache.dir.depth
and FilesystemCache.dir.name_length
.Cache files are created with a .tmp extension and moved into place when closed for writing.
FilesystemCache is process-safe: it is safe to point multiple server instances at the same cache directory.
JdbcCache caches derivative images and metadata in relational database tables. To use this cache, a JDBC driver for your database must be installed on the classpath.
JdbcCache has been tested with H2 1.4. It is known to not work with the official PostgreSQL driver, as of version 9.4.1207. Other databases may work, but are untested.
JdbcCache can be configured with the following options:
JdbcCache.url
jdbc:postgresql://localhost:5432/mydatabase
.JdbcCache.user
JdbcCache.password
JdbcCache.image_table
JdbcCache.info_table
JdbcCache will not create its schema automatically—this must be done manually using the following commands, which may have to be altered slightly for your particular database:
JdbcCache uses write transactions and is process-safe: it is safe to point multiple server instances at the same database tables.
AmazonS3Cache caches derivative images and metadata into an Amazon Simple Storage Service (S3) bucket. It can be configured with the following options:
AmazonS3Cache.access_key_id
AmazonS3Cache.secret_key
AmazonS3Cache.bucket.name
AmazonS3Cache.bucket.region
us-east-1
. Can be commented out or left blank to use a default region. (See S3 Regions.)AmazonS3Cache.object_key_prefix
AzureStorageCache caches derivative images and metadata into a Microsoft Azure Storage container. It can be configured with the following options:
AzureStorageCache.account_name
AzureStorageCache.account_key
AzureStorageCache.container_name
AzureStorageCache.object_key_prefix