cache/illuminate-adapter

A PSR-6 cache implementation using Illuminate. This implementation supports tags
79,277 11
Install
composer require cache/illuminate-adapter
Latest Version:2.0.0
PHP:^8.2
License:MIT
Last Updated:Aug 20, 2026
Links: GitHub  ·  Packagist
Maintainer: Nyholm

Illuminate PSR-6 cache pool

Latest Stable Version Coverage Software License

This package exposes an Illuminate cache store through PSR-6 and PSR-16. The pool supports tags and hierarchical keys.

Installation

composer require cache/illuminate-adapter:^2.0

Version 2 supports Illuminate 11 through 13.

Usage

use Cache\Adapter\Illuminate\IlluminateCachePool;
use Illuminate\Cache\ArrayStore;

$store = new ArrayStore();
$pool = new IlluminateCachePool($store);

Pass any implementation of Illuminate\Contracts\Cache\Store to the constructor.

Upgrading to version 2

Version 2 stores a generation snapshot with each tagged item and a separate marker for each tag. Version 1 workers cannot safely share this format.

Stop or drain all workers, clear the backing store, and then deploy version 2. Follow the same sequence before a rollback.

Contributing

Send pull requests to the main repository. Report issues on the GitHub issue tracker.

Related Packages

ytake/laravel-smarty

Smarty template engine for Laravel and Lumen

413,107 85
maartenstaa/laravel-41-route-caching

This package allows you to cache your routes definitions, thereby speeding up ea...

385,406 25
spatie/laravel-responsecache

Speed up a Laravel application by caching the entire response

9,639,828 2,812
barryvdh/laravel-httpcache

HttpCache for Laravel

409,446 501