mindscreen / flow-cachebreak
Cache breaking functionality for static resources in Flow
Installs: 1 371
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 1
Open Issues: 0
Type:neos-package
Requires
- typo3/flow: 4.*
This package is auto-updated.
Last update: 2022-02-01 12:59:50 UTC
README
Cache Breaking for Flow resources
This package provides a ViewHelper that adds a cache breaking string to resource URIs. The cache breaking string can be updated with a CLI command.
Recommended usage
Replace the default Flow resource.uri ViewHelper with the ViewHelper provided by this package for all resources that should get cache breaking capability:
<link rel="stylesheet" href="{cb:uri.resource(path: 'Build/Styles/Style.css', package: 'My.Package')}" />
You can set far future expires headers for these resources, as the the ViewHelper will add a cache breaking GET parameter to the resource URI.
The GET parameter is only updated when you explicitly flush the Mindscreen_Flow_CacheBreak cache.
./flow flow:cache:flush
will not clear this cache, as it is persistent.
As an alternative to cache flushing, you can use the command ./flow cachebreak:update
(which does the same thing
basically).
You should execute the cachebreak:update
command (or the cache flushing) during every deployment (for example
as part of your Surf Deployment).