nilportugues/repository-cache

Implementation of a base repository with cache layer using StashPHP

3.0.2 2016-08-08 23:32 UTC

This package is not auto-updated.

Last update: 2024-03-16 15:19:26 UTC


README

PHP7 Tested Build Status Scrutinizer Code Quality SensioLabsInsight Latest Stable Version Total Downloads License Donate

Repository to be used with nilportugues/repository implementing a PSR-6 cache layer using StashPHP.

Installation

Use Composer to install the package:

$ composer require nilportugues/repository-cache

Cache Drivers

Repository Cache supports all of Stash's drivers:

  • System
    • FileSystem
    • Sqlite (requires php-pdo-sqlite extension)
    • APC (requires php-apcu extension)
  • Server
    • Memcached (requires php-memcache or php-memcached extensions)
    • Redis (requires php-redis extension)
  • Specialized
    • Ephemeral (in memory cache)
    • Composite

For more information please check out Stash's documentation.

Usage

use NilPortugues\Foundation\Infrastructure\Model\Repository\Cache\RepositoryCache;
use Stash\Driver\Ephemeral;
use Stash\Driver\Memcache;
use Stash\Pool;

//---------------------------------------------------------------------------
// Definition of cache drivers
//---------------------------------------------------------------------------
$memcached = new Memcache();
$memcached->setOptions(array('servers' => array('127.0.0.1', '11211')));

$cachePool = new Pool();
$cachePool->setDriver(new Ephemeral()); //hit in memory first as always will be faster
$cachePool->setDriver($memcached); //hit memcached second.

$ttl = 3600; //time in second for cache to expire.
$cacheNamespace = Color::class;

//---------------------------------------------------------------------------
// Adding cache to an existing repository
//---------------------------------------------------------------------------
$sqlRepository = new MySQLColorRepository();
$repository = new RepositoryCache($cachePool, $repository, $cacheNamespace, $ttl);

//---------------------------------------------------------------------------
// Now use as normal... 
//---------------------------------------------------------------------------
$color = new Color('#@@@@@@', 'New color');
$repository->add($color);
$repository->find(ColorId('#@@@@@@')); //should hit cache and return an instance of Color.

Quality

To run the PHPUnit tests at the command line, go to the tests directory and issue phpunit.

This library attempts to comply with PSR-1, PSR-2, PSR-4.

If you notice compliance oversights, please send a patch via Pull Request.

Contribute

Contributions to the package are always welcome!

Support

Get in touch with me using one of the following means:

Authors

License

The code base is licensed under the MIT license.