Download the PHP package stevenbuehner/temporary-cache-service without Composer
On this page you can find all versions of the php package stevenbuehner/temporary-cache-service. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download stevenbuehner/temporary-cache-service
More information about stevenbuehner/temporary-cache-service
Files in stevenbuehner/temporary-cache-service
Download stevenbuehner/temporary-cache-service
More information about stevenbuehner/temporary-cache-service
Files in stevenbuehner/temporary-cache-service
Vendor stevenbuehner
Package temporary-cache-service
Short Description Small service that provides the ability to temporarily cache data
License MIT
Package temporary-cache-service
Short Description Small service that provides the ability to temporarily cache data
License MIT
Please rate this library. Is it a good library?
Informations about the package temporary-cache-service
TemporaryCacheService
A small Service to temporarily cache data.
It offers the functions:
/**
* @param bool $key
*/
public function hasCache($key;
/**
* @param mixed $key
* @return mixed
* @throws CacheKeyDoesNotExistException
*/
public function getCache($key);
/**
* @param mixed $key
* @param mixed $value
* @return mixed $value
*/
public function setCache($key, $value);
/**
* Clears the cache of the given key if it does exist
* @param mixed $key
*/
public function clearCache($key);
All versions of temporary-cache-service with dependencies
PHP Build Version
Package Version
Requires
php Version
>5.3
The package stevenbuehner/temporary-cache-service contains the following files
Loading the files please wait ....