You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|[\ByJG\Cache\Psr16\NoCacheEngine](docs/class-no-cache-engine.md)| Do nothing. Use it for disable the cache without change your code |
20
+
|[\ByJG\Cache\Psr16\ArrayCacheEngine](docs/class-array-cache-engine.md)| Local cache only using array. It does not persists between requests |
21
+
|[\ByJG\AnyDataset\NoSql\Cache\KeyValueCacheEngine](https://github.com/byjg/php-anydataset-nosql)| Use S3-Like or ClouflareKV as a store for the cache (other repository) |
22
+
|[\ByJG\Cache\Psr16\FileSystemCacheEngine](docs/class-filesystem-cache-engine.md)| Save the cache result in the local file system |
23
+
|[\ByJG\Cache\Psr16\MemcachedEngine](docs/class-memcached-engine.md)| Uses the Memcached as the cache engine |
24
+
|[\ByJG\Cache\Psr16\RedisCachedEngine](docs/class-redis-cache-engine.md)| uses the Redis as cache |
25
+
|[\ByJG\Cache\Psr16\SessionCachedEngine](docs/class-session-cache-engine.md)| uses the PHP session as cache |
26
+
|[\ByJG\Cache\Psr16\ShmopCachedEngine](docs/class-shmop-cache-engine.md)| uses the shared memory area for cache |
26
27
27
28
To create a new Cache Instance just create the proper cache engine and use it:
28
29
@@ -67,15 +68,17 @@ See more PSR-6 examples [here](docs/basic-usage-psr6-cachepool.md)
0 commit comments