Cache
Rendered sections are fragment-cached in published mode. Tagged stores (Redis, Memcached) get the full benefit — per-site/per-template invalidation on publish. File/array stores transparently fall back to no-cache.
php
'cache' => [
'enabled' => true,
'store' => 'redis',
'ttl' => 3600,
'tag_prefix' => 'fc',
],Drafts are never cached — the editor always reads fresh from the in-memory DraftStore.
