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

Apc Adapter Laravel Package

cache/apc-adapter

View on GitHub
Deep Wiki
Context7
Package
Score
Description
Stars
Likes
Forks
Downloads
Issues
Score
Opportunity
License
Last Release
cache/apcu-adapter 0.88 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 38K 0 3.3 46.0 MIT 3 years ago
View on GitHub
Context7
cache/illuminate-adapter 0.85 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 421 0 1.3 21.4 MIT 4 years ago
View on GitHub
Context7
symfony/polyfill-apcu 0.84 Symfony Polyfill for APCu: provides apcu_* functions and the APCuIterator class for projects relying on the legacy APC extension, enabling compatible caching APIs when APCu isn’t available or APC is used. 631 631 3 420K 0 18.7 43.9 MIT 3 months ago
View on GitHub
Context7
phpfastcache/phpfastcache 0.84 Phpfastcache is a fast, driver-based PHP caching library supporting PSR-6 and PSR-16. Works with many backends (files, APCu, Redis, Memcached, etc.), offers a unified API, and includes a type-aware v9 for PHP 8+. 2,406 2,454 444 127K 5 35.9 25.7 MIT 1 year ago
View on GitHub
Context7
einar-hansen/laravel-psr-6-cache 0.84 Laravel package that bridges Laravel’s cache system with PSR-6. Use Laravel’s cache stores through a PSR-6 CacheItemPoolInterface for interoperability with PSR-compliant libraries, with simple configuration and drop-in integration. 1 1 1 2K 0 0.6 41.7 MIT 3 years ago
View on GitHub
Context7
cache/memcached-adapter 0.83 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 19K 0 2.9 42.0 MIT 4 years ago
View on GitHub
Context7
cache/memcache-adapter 0.83 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 34.5 MIT 4 years ago
View on GitHub
Context7
symfony/cache 0.83 Symfony Cache is a fast, low-overhead caching component with PSR-6 implementations and adapters for common backends. Includes a PSR-16 adapter plus support for symfony/cache-contracts CacheInterface and TagAwareCacheInterface. 4,154 4,180 66 9M 0 57.4 53.7 MIT 1 week ago
View on GitHub
Deep Wiki
Context7
cache/adapter-bundle 0.83 30 30 26 2K 0 6.9 25.3 MIT 7 years ago
View on GitHub
Context7
cache/chain-adapter 0.82 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 11 6 6K 0 3.2 36.8 MIT 4 years ago
View on GitHub
Context7
cache/filesystem-adapter 0.82 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... 70 72 22 88K 0 4.4 42.7 MIT 4 years ago
View on GitHub
Context7
zetacomponents/cache 0.82 6 6 9 2K 0 0.6 33.8 NOASSERTION
View on GitHub
Context7
beste/in-memory-cache 0.82 PSR-6 in-memory cache for PHP, ideal as a default cache or for tests. Lightweight CacheItemPool implementation with support for expiration and optional PSR-20 clock injection (e.g., frozen clocks) to control time in tests. 26 25 0 1M 0 17.6 62.7 MIT 3 months ago
View on GitHub
Context7
laminas/laminas-cache-storage-adapter-memcached 0.82 Memcached storage adapter for Laminas Cache. Provides a cache storage implementation backed by the PHP Memcached extension, supporting common cache operations, options, and integration with Laminas cache plugins and configuration. 1 1 8 46K 1 4.6 56.3 BSD-3-Clause 1 year ago
View on GitHub
Context7
cache/redis-adapter 0.82 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 58 15 51K 0 3.7 41.1 MIT 3 years ago
View on GitHub
Context7
cache/doctrine-adapter 0.82 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 20K 0 3.1 43.8 MIT 4 years ago
View on GitHub
Context7
cache/adapter-common 0.82 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 30 288K 0 6.4 47.2 MIT 4 years ago
View on GitHub
Context7
cache/array-adapter 0.81 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 57 15 74K 0 4.4 42.9 MIT 4 years ago
View on GitHub
Context7
cache/namespaced-cache 0.80 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 5K 0 2.2 35.5 MIT 4 years ago
View on GitHub
Context7
cache/void-adapter 0.80 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 20K 0 2.9 41.8 MIT 4 years ago
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.
andydefer/laravel-cluster
testo/fiber
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity
christhompsontldr/laravel-inky
spatie/mailcoach-vapor
spatie/laravel-javascript-views