desarrolla2 / cache
Provides an cache interface for several adapters Apc, Apcu, File, Mongo, Memcache, Memcached, Mysql, Mongo, Redis is supported.
Installs: 2 261 984
Dependents: 55
Suggesters: 1
Security: 0
Stars: 134
Watchers: 10
Forks: 38
Open Issues: 0
Requires
- php: >=7.2.0
- psr/simple-cache: ^1.0
Requires (Dev)
- ext-apcu: *
- ext-json: *
- ext-memcached: *
- ext-mysqli: *
- cache/integration-tests: dev-master
- mikey179/vfsstream: v1.6.8
- mongodb/mongodb: ^1.3
- phpstan/phpstan: ^0.12.29
- phpunit/phpunit: ^8.3 || ^9.0
- predis/predis: ~1.0.0
- symfony/phpunit-bridge: ^5.2
Provides
This package is auto-updated.
Last update: 2024-11-04 18:04:05 UTC
README
A simple cache library, implementing the PSR-16 standard using immutable objects.
Caching is typically used throughout an applicatiton. Immutability ensure that modifying the cache behaviour in one location doesn't result in unexpected behaviour due to changes in unrelated code.
Desarolla2 Cache aims to be the most complete, correct and best performing PSR-16 implementation available.
Installation
composer require desarrolla2/cache
Usage
use Desarrolla2\Cache\Memory as Cache; $cache = new Cache(); $value = $cache->get('key'); if (!isset($value)) { $value = do_something(); $cache->set('key', $value, 3600); } echo $value;
Adapters
The following implementation allows you to combine cache adapters.
Options
You can set options for cache using the withOption
or withOptions
method.
Note that all cache objects are immutable, setting an option creates a new
object.
TTL
All cache implementations support the ttl
option. This sets the default
time (in seconds) that cache will survive. It defaults to one hour (3600
seconds).
Setting the TTL to 0 or a negative number, means the cache should live forever.
Methods
PSR-16 methods
Each cache implementation has the following Psr\SimpleCache\CacheInterface
methods:
get(string $key [, mixed $default])
Retrieve the value corresponding to a provided key
has(string $key)
Retrieve the if value corresponding to a provided key exist
set(string $key, mixed $value [, int $ttl])
Add a value to the cache under a unique key
delete(string $key)
Delete a value from the cache
clear()
Clear all cache
getMultiple(array $keys)
Obtains multiple cache items by their unique keys
setMultiple(array $values [, int $ttl])
Persists a set of key => value pairs in the cache
deleteMultiple(array $keys)
Deletes multiple cache items in a single operation
Additional methods
The Desarrolla2\Cache\CacheInterface
also has the following methods:
withOption(string $key, string $value)
Set option for implementation. Creates a new instance.
withOptions(array $options)
Set multiple options for implementation. Creates a new instance.
getOption(string $key)
Get option for implementation.
Packers
Cache objects typically hold a Desarrolla2\Cache\Packer\PackerInterface
object. By default, packing is done using serialize
and unserialize
.
Available packers are:
SerializePacker
usingserialize
andunserialize
JsonPacker
usingjson_encode
andjson_decode
NopPacker
does no packingMongoDBBinaryPacker
usingserialize
andunserialize
to store as BSON Binary
PSR-16 incompatible packers
The JsonPacker
does not fully comply with PSR-16, as packing and
unpacking an object will probably not result in an object of the same class.
The NopPacker
is intended when caching string data only (like HTML output) or
if the caching backend supports structured data. Using it when storing objects
will might give unexpected results.
Contributors
Twitter: @desarrolla2
Twitter: @ArnoldDaniels