Download the PHP package pluswerk/cache-automation without Composer
On this page you can find all versions of the php package pluswerk/cache-automation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pluswerk/cache-automation
More information about pluswerk/cache-automation
Files in pluswerk/cache-automation
Package cache-automation
Short Description +Pluswerk TYPO3 extension: Cache Automation - This TYPO3 extension clear caches automated in the right moment.
License GPL-3.0+
Homepage https://www.pluswerk.ag/
Informations about the package cache-automation
Deprecated
.
.
.
.
Use andersundsehr/cache-automation instead
.
.
.
.
.
.
.
TYPO3 Extension: Cache Automation
This TYPO3 extension clear caches automated in the right moment. This happens by some magic configuration of your extension.
Example:
With this TYPO3 extension you can cache for example an extbase "list and show" plugin. If a database record is updated the cache of all pages containing this plugin will be flushed.
You can write your own magic cache agent.
Requires TYPO3 8.7 up to TYPO3 9
Issue tracking: GitHub: TYPO3 Cache Automation
Packagist: pluswerk/cache-automation
Installation
- Install the TYPO3 extension via composer
Composer installation:
Configuration
Configure cache agent
Configure a cache agent for your extension in your ext_localconf.php
.
A cache agent is triggered, if a database record of the given tables has changed.
Example:
Available cache agents
SimplePluginAgent
This agent flush the cache of all pages which have a content element with the given plugin keys.
PageRootlineAgent
This agent flush the cache of all pages which are in the TYPO3 "rootline" of the given pages.
Use your own cache agent
You can simply use your own cache agent. It has to implement \Pluswerk\CacheAutomation\Agents\AgentInterface
: