jardisadapter/cache
Composer 安装命令:
composer require jardisadapter/cache
包简介
PSR-16 multi-layer cache for PHP — stack Memory, APCu, Redis, and Database backends with automatic read-through backfill and write-through propagation; a building block of the open-source foundation that Jardis-generated DDD code runs on
关键字:
README 文档
README
Part of Jardis — the Domain-Driven Design platform for PHP. You model your domain; Jardis generates the production-ready hexagonal code (DTOs, Command/Query handlers, repositories, persistence). This package is part of the open-source foundation that generated code runs on.
A PSR-16 cache for PHP with multi-layer chaining. Stack Memory, APCu, Redis, and Database backends in a single Cache instance. On a cache miss in a fast layer, the value is automatically backfilled from the next slower layer — so subsequent reads hit the fastest backend available. Writes propagate to all configured layers simultaneously.
Features
- Multi-Layer Chain — Stack any number of backends; reads backfill upper layers automatically
- 5 Backends —
CacheMemory,CacheApcu,CacheRedis,CacheDatabase,CacheNull - PSR-16 — Full
Psr\SimpleCache\CacheInterfaceimplementation on every layer - Namespace Isolation — Each layer instance carries its own namespace prefix
- Immutable After Construction — All layers set via constructor; no mutation at runtime
- Null Object Pattern — Empty
Cache([])degrades gracefully to a no-opCacheNull - TTL Support — Integer seconds or
DateIntervalon everyset()/setMultiple() - Zero Dependencies — No third-party packages required beyond PSR interfaces
Installation
composer require jardisadapter/cache
Quick Start
use JardisAdapter\Cache\Cache; use JardisAdapter\Cache\Adapter\CacheMemory; use JardisAdapter\Cache\Adapter\CacheRedis; $redis = new Redis(); $redis->connect('127.0.0.1', 6379); // Two-layer cache: L1 = in-process memory, L2 = Redis $cache = new Cache([ new CacheMemory('myapp'), new CacheRedis($redis, 'myapp'), ]); $cache->set('user:42', $userData, ttl: 300); $user = $cache->get('user:42');
Advanced Usage
use JardisAdapter\Cache\Cache; use JardisAdapter\Cache\Adapter\CacheMemory; use JardisAdapter\Cache\Adapter\CacheApcu; use JardisAdapter\Cache\Adapter\CacheRedis; use JardisAdapter\Cache\Adapter\CacheDatabase; // Four-layer cascade: L1 memory → L2 APCu → L3 Redis → L4 database // A miss at L1 checks L2, then L3, then L4. // When found, the value is written back into all faster layers automatically. $cache = new Cache([ new CacheMemory('orders'), new CacheApcu('orders'), new CacheRedis($redis, 'orders'), new CacheDatabase($pdo, namespace: 'orders'), ]); // Bulk operations — all layers updated in one call $cache->setMultiple([ 'order:101' => $order101, 'order:102' => $order102, ], ttl: 600); $orders = $cache->getMultiple(['order:101', 'order:102']); // Invalidate a key across all layers $cache->delete('order:101'); // Expire stale database entries explicitly $dbLayer = new CacheDatabase($pdo, namespace: 'orders'); $dbLayer->cleanExpired();
Documentation
Full documentation, guides, and API reference:
docs.jardis.io/en/adapter/cache
License
This package is licensed under the MIT License.
Jardis · Documentation · Headgent
AI-Assisted Development
This package ships with a skill for Claude Code, Cursor, Continue, and Aider. Install it in your consuming project:
composer require --dev jardis/dev-skills
More details: https://docs.jardis.io/en/skills
jardisadapter/cache 适用场景与选型建议
jardisadapter/cache 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 212 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「redis」 「database」 「php」 「cache」 「memory」 「psr-16」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 jardisadapter/cache 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jardisadapter/cache 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 jardisadapter/cache 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Dibi is Database Abstraction Library for PHP
Microservice RPC through message queues.
Store your language lines in the database, yaml or other sources
The CodeIgniter Redis package
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
贝嘟分布式缓存扩展
统计信息
- 总下载量: 212
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 39
- 依赖项目数: 1
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-10