Hi! Just launching a large-ish Kirby site, and am sorting out caching.
Am i right in saying if I just implement this code block in my config:
return [
'cache' => [
'pages' => [
'active' => true,
'ignore' => function ($page) {
return $page->title()->value() === 'Do not cache me';
}
]
]
];
then my site is now being cached apart from the ignored pages? Do I need to set anything further? And will any changes via the panel clear the cache for that page?