lolli / enetcache
Enetcache cache extension
Installs: 6 967
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 4
Open Issues: 2
Type:typo3-cms-extension
Requires
- typo3/cms-core: ^11.0 || ^12.0
Requires (Dev)
- phpunit/phpunit: ^9.5.26
- typo3/testing-framework: ~7.0@dev
Replaces
- typo3-ter/enetcache: 5.0.0
README
TYPO3 Extension enetcache
Features
Provides a rather simple API for frontend extensions to put their rendered content into cache. The extension synchronizes lifetime and tags with the general page cache. A backend DataHandler hook takes care of automatic cache flushing if records are changed affecting those plugin cache entries.
Installation
The extension can be installed from TYPO3 TER via the extension manager but
the recommended way is using composer doing composer require lolli/enetcache
,
and / or define a dependency in your consuming extensions.
Usage documentation
Find API documentation at docs.typo3.org
Development: Release new version
Example release workflow, basically for my own laziness ;)
Build/Scripts/runTests.sh -s composerUpdate -t 11
.Build/bin/tailor set-version 4.1.1
git commit -am "[RELEASE] 4.1.1 Bug fixes and improved core v10 / v11 compatibility"
git tag 4.1.1
git push
git push --tags