nilportugues/repository-cache
Composer 安装命令:
composer require nilportugues/repository-cache
包简介
Implementation of a base repository with cache layer using StashPHP
关键字:
README 文档
README
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!
- Report any bugs or issues you find on the issue tracker.
- You can grab the source code at the package's Git repository.
Support
Get in touch with me using one of the following means:
- Emailing me at contact@nilportugues.com
- Opening an Issue
Authors
License
The code base is licensed under the MIT license.
统计信息
- 总下载量: 236
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 4
其他信息
- 授权协议: MIT
- 更新时间: 2016-01-26