<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namelesscoder / typo3-cms-multilevel-cache example snippets
// Simplest, most frequent use case: put runtime cache on top of existing cache
\NamelessCoder\MultilevelCache\CacheConfiguration::convert(
'extbase_object',
'cache_runtime', // First priority. A string means this is a reference to another cache that's already defined.
'extbase_object' // Second priority. A fast way to operate this is to reference the original configuration.
);
// Bit more complex, manually define the second, third, fourth and so on backends that will be used:
\NamelessCoder\MultilevelCache\CacheConfiguration::convert(
'extbase_object',
'cache_runtime', // First priority. A string means this is a reference to another cache that's already defined.
[
'backend' => \TYPO3\CMS\Core\Cache\Backend\Typo3DatabaseBackend::class,
'options' => [
'defaultLifetime' => 0,
]
]
);
\NamelessCoder\MultilevelCache\CacheConfiguration::convert(
'extbase_object',
'cache_runtime', // First priority. A string means this is a reference to another cache that's already defined.
[
'backend' => \TYPO3\CMS\Core\Cache\Backend\Typo3DatabaseBackend::class,
'options' => [
'defaultLifetime' => 86400
],
'multilevel' => [
'flush => true, // Flush this backend when the cache is flushed. Default `true`.
'cascade' => true, // Do `set()` and `remove()` also on this backend. Default `true`.
'prefix' => 'combo-extbase-object', // All items' IDs are prefixed with this value. Default is empty.
]
],
[
'backend' => My\Extension\OffSiteCacheBackend::class,
'options' => [
'defaultLifetime' => 604800
],
'multilevel' => [
'flush => false
]
]
);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.