Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Predis Adapter Laravel Package

cache/predis-adapter

PSR-6 cache pool implementation backed by Predis (Redis) from the PHP Cache organization. Create a Predis\Client and wrap it in PredisCachePool for fast, standards-compliant caching with shared features like tagging and hierarchy support.

View on GitHub
Deep Wiki
Context7
Package
Score
Description
Stars
Likes
Forks
Downloads
Issues
Score
Opportunity
License
Last Release
sonata-project/cache 0.88 Deprecated Sonata cache library providing adapters for cache backends and counters. Includes Redis (PRedis) implementations to set/get cached values and increment counters, with simple key arrays and TTL support via Composer install. 327 324 28 131K 0 2.3 25.2 MIT 4 years ago
View on GitHub
Context7
cache/redis-adapter 0.87 PSR-6 cache pool backed by Redis using the PhpRedis extension. Part of the PHP Cache ecosystem, with shared docs for advanced features like tagging and hierarchy. Supports Redis, RedisArray, and RedisCluster clients. 53 57 14 68K 0 3.7 42.9 MIT 3 years ago
View on GitHub
Context7
predis/predis 0.87 Predis is a flexible, feature-complete Redis/Valkey client for PHP 7.2+. Supports Redis 3.0–8.0, clustering (including redis-cluster), Sentinel/replication, transactions, Lua scripting, pipelining, SCAN iterators, TLS/UNIX sockets, and custom commands. 7,763 8,052 993 6M 15 70.3 54.7 MIT 3 months ago
View on GitHub
Deep Wiki
Context7
laminas/laminas-cache-storage-adapter-redis 0.86 Redis storage adapter for Laminas Cache. Provides a Redis-backed cache implementation with configurable options for connecting to Redis and storing cache items efficiently, suitable for applications needing fast, shared caching. 7 7 15 53K 6 19.0 60.0 BSD-3-Clause 6 months ago
View on GitHub
Context7
cache/memcached-adapter 0.85 PSR-6 cache pool backed by Memcached. Create a Memcached client, add servers, and use MemcachedCachePool for fast, standards-based caching. Part of the PHP Cache ecosystem with shared docs for tagging and hierarchy support. 16 18 4 17K 0 2.9 41.5 MIT 4 years ago
View on GitHub
Context7
cache/memcache-adapter 0.85 PSR-6 cache pool implementation backed by the Memcache extension. Create a Memcache client, connect to your server, and use MemcacheCachePool for standards-based caching. Part of the PHP Cache (php-cache) ecosystem. 6 7 4 2K 0 2.6 35.0 MIT 4 years ago
View on GitHub
Context7
cache/illuminate-adapter 0.84 PSR-6 cache pool adapter for Laravel Illuminate cache stores. Wrap any Illuminate\Cache\Store (e.g., ArrayStore) to use via standard PSR-6 CacheItemPoolInterface. Part of the PHP-Cache organization with shared docs on tags and hierarchy. 11 11 3 257 0 1.3 18.7 MIT 4 years ago
View on GitHub
Context7
cache/array-adapter 0.82 PSR-6 cache pool implemented with an in-memory PHP array. Zero configuration: just instantiate ArrayCachePool for fast, ephemeral caching in tests or single-request use. Part of the PHP Cache ecosystem with shared docs and optional features info. 55 56 15 72K 0 4.4 42.9 MIT 4 years ago
View on GitHub
Context7
cache/prefixed-cache 0.82 PSR-6 cache pool decorator that prefixes all cache item keys with a predefined string. Wrap any PSR-6 cache (e.g., Redis) to safely namespace entries per app, tenant, or module. Part of the PHP-Cache ecosystem. 2 2 1 877 0 1.8 34.3 MIT 4 years ago
View on GitHub
Context7
cache/doctrine-adapter 0.81 PSR-6 cache pool adapter backed by Doctrine Cache. Wraps Doctrine cache drivers (e.g., MemcachedCache) in a standards-compliant PSR-6 CacheItemPool for easy integration with php-cache features like tagging and hierarchy support. 13 15 2 24K 0 3.1 44.6 MIT 4 years ago
View on GitHub
Context7
cache/apc-adapter 0.79 9 8 3 252 0 2.8 20.1 MIT 4 years ago
View on GitHub
Context7
cache/adapter-bundle 0.79 0 30 3K 6.9 26.9
View on GitHub
Context7
cache/apcu-adapter 0.79 PSR-6 cache pool adapter backed by APCu from the PHP Cache organization. Drop-in cache implementation with no configuration required—instantiate ApcuCachePool and start caching. Supports shared PHP-Cache features like tagging and hierarchy via docs. 17 17 15 36K 0 3.3 45.6 MIT 3 years ago
View on GitHub
Context7
cache/namespaced-cache 0.79 PSR-6 cache pool decorator that adds namespaces on top of a hierarchical cache (e.g., Redis). Wrap an existing cache pool and automatically prefix keys per namespace, helping isolate apps/modules while reusing the same backend. 14 14 0 7K 0 2.2 36.4 MIT 4 years ago
View on GitHub
Context7
cache/chain-adapter 0.78 PSR-6 cache pool chain adapter that combines multiple cache pools (e.g., APCu + Redis) into a single CachePoolChain. Part of PHP-Cache, with optional features like tagging and hierarchy via shared docs. Install with composer and use with minimal setup. 11 10 6 10K 0 3.2 41.0 MIT 4 years ago
View on GitHub
Context7
cache/void-adapter 0.78 PSR-6 “void” (null/blackhole) cache pool that never stores anything and always returns empty cache items. Useful for disabling caching in tests or no-op environments. Part of the PHP-Cache organization. 18 18 4 25K 0 2.9 43.1 MIT 4 years ago
View on GitHub
Context7
cache/cache 0.77 Meta package for the PHP-Cache ecosystem: PSR-6 cache adapters and libraries (tagging, hierarchy, bundles) in one install. Useful for development and contributing, but not actively maintained—new projects should consider Symfony Cache. 265 271 81 16K 0 7.4 31.9 MIT 8 years ago
View on GitHub
Context7
cache/filesystem-adapter 0.77 A PSR-6 cache adapter for Laravel/PHP using Flysystem to store cache files in a filesystem. Store, retrieve, and manage cache efficiently with filesystem-backed persistence. Supports tagging, hierarchy, and easy configuration via setFolder(). Ideal for Laravel applications needing scalable caching s... 0 72 88K 4.4 42.9
View on GitHub
Context7
cache/adapter-common 0.76 Shared classes and interfaces for the PHP Cache organization’s PSR-6 cache pools. Provides common building blocks used across adapters, with support for features like tagging and cache hierarchies via the shared php-cache documentation. 110 111 29 319K 0 6.3 47.8 MIT 4 years ago
View on GitHub
Context7
cache/taggable-cache 0.75 Adapter that makes any PSR-6 cache pool taggable. Tag related cache items and invalidate them by tag without clearing the whole cache. Part of the PHP Cache organization; works with all PHP Cache pools supporting tagging. 0 36 10K 4.5 33.6
View on GitHub
Context7
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
make-dev/orca
dmstr/symfony-system-resources-bundle
dmstr/symfony-job-queue-bundle
dmstr/openapi-json-schema-bundle
dmstr/keycloak-security-bundle
dmstr/doctrine-audit-log-bundle
dmstr/api-platform-utils-bundle
dmstr/api-configuration-bundle
chrisdev/ux-components
baks-dev/finances
emuniq/filament-browser-notifications
syriable/filament-translator
hungnm28/livewire-form
wenprise/eloquent
crudly/encrypted
fadion/bouncy
cuci/prototurk-sdk
gos/pubsub-router-bundle
cuci/prototurk-sdk-symfony
clementtalleu/easyadmin-markdown-bundle