From 04e4b604354d72dbd639a9e29130444b299ab327 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Mon, 7 Mar 2022 11:20:01 +1300 Subject: [PATCH] DOCS Fix class reference for cache class The `lifetime` config variable is on the `Cache` class, not the `Database` class. --- docs/en/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/configuration.md b/docs/en/configuration.md index a5ce063..ff3ef83 100644 --- a/docs/en/configuration.md +++ b/docs/en/configuration.md @@ -30,7 +30,7 @@ SilverStripe\Core\Injector\Injector: SilverStripe\TextExtraction\Cache\FileTextCache: class: SilverStripe\TextExtraction\Cache\FileTextCache\Cache -SilverStripe\TextExtraction\Cache\FileTextCache\Database: +SilverStripe\TextExtraction\Cache\FileTextCache\Cache: lifetime: 3600 # Number of seconds to cache content for ```