vectorface/cache
Composer 安装命令:
composer require vectorface/cache
包简介
Simple cache classes
关键字:
README 文档
README
This is a simple cache library. It exposes several caching mechanisms (with different semantics), along with support for adapting to a PSR-16 compatible interface, and atomic counters. Nothing fancy.
Interface
The cache interface exposes get and set methods, which do exactly what you'd expect from a cache:
use Vectorface\Cache\PHPCache; // PHPCache is a trivial array-backed cache. $cache = new PHPCache(); $cache->get("foo"); // null, because we just created this cache. $cache->get("foo", "dflt"); // "dflt"; same as above, but with our own default $cache->set("foo", "bar"); // returns true if set. This cache always succeeds. $cache->get("foo"); // "bar", because we just set it.
The interface supports optional time-to-live (expiry) where supported by the underlying cache type. The interface also provides delete, clean, and flush methods to delete one entry, all expired entries, and all entries (respectively).
Available Implementations
APCCache: APC or APCu.MCCache: MemcacheRedisCache: Redis, using either the phpredis extension or the php-redis-client libraryNullCache: A blackhole for your dataPHPCache: Stores values in a local variable, for one script execution only.SQLCache: Values stored in an SQL table, accessed via PDO.TempFileCache: Store values in temporary files. Does not support atomic counting.TieredCache: Layer any of the above caches on top of each other to form a hybrid cache. Does not support atomic counting.
Real-World Use
Why would you want to use this? It makes it almost trivial to switch your underlying cache implementation without any code changes. This can be especially useful for testing.
use Vectorface\Cache\APCCache; use Vectorface\Cache\PHPCache; use Vectorface\Cache\TempFileCache; // Memcache and SQL-based caches also work, but aren't as good as examples. $caches = [new APCCache(), new PHPCache(), new TempFileCache()]; foreach ($caches as $cache) { // Look ma! Same interface! $cache->set('foo', 'bar'); $cache->get('foo'); }
Atomic Counters
A common use of caches are to implement atomic counting, i.e. incrementing or decrementing by some amount. Atomicity is important for reliability in distributed environments to avoid race conditions.
Not all cache implementations in this library support atomic counting, because it either isn't possible or doesn't make sense in that context.
use Vectorface\Cache\APCCache; use Vectorface\Cache\AtomicCounter; $cache = new APCCache(); assert($cache instanceof AtomicCounter); // Can increment and decrement by key, defaults to steps of 1 assert($cache->increment("counter") === 1); assert($cache->increment("counter") === 2); assert($cache->decrement("counter") === 1); // Can step by arbitrary amounts assert($cache->increment("counter", 5) === 6); assert($cache->decrement("counter", 2) === 4);
Tiered Caching
Another particularly useful feature is the ability to stack caches. You can put fast caches in front of successively slower caches, presumably where the fast caches will have less storage and evict items used less often.
use Vectorface\Cache\APCCache; use Vectorface\Cache\MCCache; use Vectorface\Cache\TempFileCache; use Vectorface\Cache\TieredCache; $memcache = new Memcache(); $memcache->addServer("127.0.0.1"); $cache = new TieredCache([ new APCCache(), new MCCache($memcache), new TempFileCache(), ]); $cache->get("foo"); // Tries all caches in sequence until one succeeds. Fails if none succeed. $cache->set("foo", "bar"); // Sets a value in all caches. $cache->get("foo"); // Tries all caches in sequence. The fastest should succeed and return quickly.
PSR-16 Support
If you need interoperability with other tooling that support PSR-16 SimpleCache, you may use the SimpleCacheAdapter class which can wrap any of the cache implementations in this library.
use Psr\SimpleCache\CacheInterface; use Vectorface\Cache\PHPCache; use Vectorface\Cache\SimpleCacheAdapter; $psr16Cache = new SimpleCacheAdapter(new PHPCache()); assert($psr16Cache instanceof CacheInterface);
vectorface/cache 适用场景与选型建议
vectorface/cache 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15.56k 次下载、GitHub Stars 达 9, 最近一次更新时间为 2015 年 01 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「cache」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 vectorface/cache 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 vectorface/cache 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 vectorface/cache 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
repository php library
Laravel 5 - Repositories to the database layer
Rinvex Repository is a simple, intuitive, and smart implementation of Active Repository with extremely flexible & granular caching system for Laravel, used to abstract the data layer, making applications more flexible to maintain.
Laravel 5 - Repositories to the database layer
Rinvex Cacheable is a granular, intuitive, and fluent caching system for eloquent models. Simple, but yet powerful, plug-n-play with no hassle.
Small library for obtaining RSS feed with caching.
统计信息
- 总下载量: 15.56k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 9
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-01-10