Download the PHP package tobento/app-cache without Composer
On this page you can find all versions of the php package tobento/app-cache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package app-cache
App Cache
Cache support for the app.
Table of Contents
- Getting Started
- Requirements
- Documentation
- App
- Cache Boot
- Cache Config
- Cache Usage
- Adding and Registering Caches
- Deleting Expired Items
- Clearing Cache
- Credits
Getting Started
Add the latest version of the app cache project running this command.
Requirements
- PHP 8.0 or greater
Documentation
App
Check out the App Skeleton if you are using the skeleton.
You may also check out the App to learn more about the app in general.
Cache Boot
The cache boot does the following:
- installs and loads cache config file
- implements PSR-6 and PSR-16 interfaces based on cache config
You may check out the Cache Service to learn more about it.
Cache Config
The configuration for the cache is located in the file at the default App Skeleton config location where you can specify the pools and caches for your application.
Cache Usage
You can access the pools and caches in several ways:
Using the app
Check out the Cache Item Pools Interface to learn more about it.
Check out the Caches Interface to learn more about it.
Using autowiring
You can also request the interfaces in any class resolved by the app:
Adding and Registering Caches
You may add and register more pools and caches by the following way instead of using the cache config file:
Deleting Expired Items
Some PSR 6 cache pools or PSR 16 caches do not include an automated mechanism for pruning expired cache items.
If you have installed the App Console you may easily delete expired items running the following commands:
PSR 6
PSR 16
If you would like to automate this process, consider installing the App Schedule bundle and using a command task:
Clearing Cache
If you have installed the App Console you may easily clear caches running the following commands:
PSR 6
Clearing specific pools only:
PSR 16
Clearing specific pools only:
Credits
- Tobias Strub
- All Contributors
All versions of app-cache with dependencies
tobento/app Version ^1.0
tobento/app-migration Version ^1.0
tobento/app-file-storage Version ^1.0
tobento/service-cache Version ^1.0
tobento/service-clock Version ^1.0