Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 400 Bytes

File metadata and controls

28 lines (17 loc) · 400 Bytes
sidebar_position
3

NoCacheEngine

This class doesn't cache. Use it to disable the cache without changing your code.

PSR-16 Constructor

$cache = new \ByJG\Cache\Psr16\NoCacheEngine();

PSR-6 Constructor

$cachePool = \ByJG\Cache\Factory::createNullPool();

or

$cachePool = new \ByJG\Cache\Psr6\CachePool(new \ByJG\Cache\Psr16\NoCacheEngine());