Download the PHP package gustav/cache without Composer
On this page you can find all versions of the php package gustav/cache. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Vendor gustav
Package cache
Short Description A small and simple PHP cache system
License GPLv3
Homepage http://gustav.fieselschweif.de
Package cache
Short Description A small and simple PHP cache system
License GPLv3
Homepage http://gustav.fieselschweif.de
Please rate this library. Is it a good library?
Informations about the package cache
Cache
A small and simple PHP cache system, which implements PSR-6 interfaces.
Implementations
- Filesystem: Each cache item pool is a simple file. Cache items are saved with help of PHP's default serialization method.
- Debug: Cache item pools will not be persisted. This is just for testing purposes. Don't use this implementation in production environments.
Usage
Configuration
You can set the following configurations in \Gustav\Orm\Configuration
:
setImplementation(string)
: Sets the implementation of the cache manager to use here. Default is\Gustav\Cache\Filesystem\CacheManager
(i.e. the Filesystem cache).setDirectory(string)
: Sets the directory on filesystem, where we save the cache pool files. There's no default value.setDefaultExpiration(integer)
: Sets the default time to live of cache items, if you don't set any explicitly in\Gustav\Cache\CacheItem
. Consider that0
and lower means, that the items will not expire. Default is0
.getLogConiguration(): \Gustav\Utils\Log\Configuration
/setLogConfiguration(\Gustav\Utils\Log\Configuration)
: Configure the error log to use in this cache implementation. By default this uses the default configuration from Utils. See Gustav Utils for further information.
All versions of cache with dependencies
PHP Build Version
Package Version
Requires
php Version
^7.4
ext-mbstring Version *
gustav/utils Version ^0.1
psr/cache Version ^1.0
psr/simple-cache Version ^1.0
ext-mbstring Version *
gustav/utils Version ^0.1
psr/cache Version ^1.0
psr/simple-cache Version ^1.0
The package gustav/cache contains the following files
Loading the files please wait ....