Download the PHP package heyday/silverstripe-cacheinclude without Composer
On this page you can find all versions of the php package heyday/silverstripe-cacheinclude. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download heyday/silverstripe-cacheinclude
More information about heyday/silverstripe-cacheinclude
Files in heyday/silverstripe-cacheinclude
Package silverstripe-cacheinclude
Short Description Fast Caching for SilverStripe
License
Informations about the package silverstripe-cacheinclude
SilverStripe Cache Include
Template caching based on urls not DB queries.
Features
- Cache keys are built from information available in request object (means no DB calls)
- Invalidation hooks for when DataObject's are modified
- Uses
doctrine/cache
library, providing many cache backends - Uses Symfony Expression language for fine-grained invalidation control
- Support for
<% cache_include 'TemplateName' %>
syntax in templates - Support for
<% cache %><% end_cache %>
syntax in templates - A full request cache that includes the ability to substitute security tokens
- Highly customisable
- Sets request header when cache is hit for easier testing e.g hit at Thu, 03 Mar 2022 14:23:41 -0600
Installation
How to use
Enabling
To be able to invalidate caches from DataObject writes, add the InvalidationExtension
:
- C te a config file
mysite/_config/caching.yml
- Add the following to the yml file
Template Usage
Cache a section of a template:
Cache an included template (assumes a cache block config name of SomeTemplateName
):
Cache an included template with a different cache block config name:
Cache block config
For each cache block that is used, you need a corresponding config provided to CacheInclude
.
The following is an example of a config for SomeCacheBlock
and AnotherCacheBlock
:
mysite/_config/caching.yml
Configuration options
Key creation options:
context
Context is a method to tell the key creator what information about the request to include in the created key.
Possible values:
no
- Key created is independent of the request
host
- Key created with the host name, useful for when using Subsites or multiple base domains
page
- Key is created based on url, but not including GET variables
full
- Key is created based on url, including GET variables
expires
Possible values:
- (string)
- A string to pass into strtotime e.g. '+1 hour'
- (int)
- A number of seconds
member
Possible values:
true
- Will create a new cache per logged in member
any
- Will create a new cache members as a group (and another key when a person is not logged in)
versions
Possible values:
- (int)
- Set this to an integer to make the specified number of versions of the cache
This is useful for when a cache block contains random content, but you still want caching.
e.g. set to 20 to get 20 (potentially) different version of a cache block.
Cache invalidation options
contains
- (array)
- An array of class names that if a record saved matches the cache will invalidate
invalidation_rules
- (array)
- An array of rules written in the available expression language. If a rule is matched the cache will invalidate
The Expression Language is provided by Symfony, but also has the following available:
Variables
item
action
Functions
list()
instanceof()
Theses can be used to do the following:
Full request caching
CacheInclude comes with a RequestCache
service that can be added to cache full request objects for use in high load
sites.
Enabling
To enable the full request cache, the RequestCacheMiddleware
needs to be applied and a Global
config block needs to be created:
Note: the After:
condition in the above example is important. Without it, the middleware that handles request caching will
run before SilverStripe's authentication middleware - meaning that the current user (stored in the session) isn't available. This
could result in cache contamination between users, or between guests & registered users.
Full request caching increases performance substantially but it isn't without a cost. It can be hard to configure, as there are numerous cases where you don't want to either cache a request or alternatively serve a cached request.
To help in this there is quite a bit you can do out of the box to configure the way that caching is handled.
The following gives some demonstration of how to configure things and what you can do:
As you can see above there are some variables made accessible to you in the expression language.
The following is made available in the "Save" rules:
request
response
member
session
The following is made available in the "Fetch" rules:
request
member
session
Additional variables can be provided through the injector system.
Customisation
Because of the heavy usage of dependency injection and the SilverStripe Injector
component, most parts
of CacheInclude
can be completely customised by replacing the standard classes with ones of your own.
Key Creators
CacheInclude
comes built in with one key creator Heyday\CacheInclude\KeyCreators\ControllerBased
.
This key creator makes keys based on the config supplied in yaml, the current request and the environment.
You can create your own key creators by extending the KeyCreatorInterface
and specifying the creator's service name from the template.
License
SilverStripe CacheInclude is released under the MIT license
Contributing
Unit Testing
Code guidelines
This project follows the standards defined in:
Run the following before contributing: