DOCS: Example of partial cache expiry setting.

This commit is contained in:
Mojmir Fendek 2020-09-11 08:58:44 +12:00
parent b592d2105c
commit 2c1cb79156
1 changed files with 16 additions and 0 deletions

View File

@ -169,6 +169,22 @@ If you have good `$CacheKey` and `$CacheCondition` implementations, you may want
improve performance.
[/note]
Example below shows how to set partial cache expiry to one hour.
```yaml
# app/_config/cache.yml
---
Name: app-cache
After:
- 'corecache'
---
SilverStripe\Core\Injector\Injector:
Psr\SimpleCache\CacheInterface.cacheblock:
constructor:
namespace: "cacheblock"
defaultLifetime: 3600
```
### Nested cached blocks