-
-
Notifications
You must be signed in to change notification settings - Fork 453
[V5˖] Disabling PhpFastCache
Georges.L edited this page Jun 23, 2022
·
2 revisions
Sometimes you may need to disable PhpFastCache for some reasons.
As of the V5 there's no "on/off" setting anymore, but you can use Devnull driver instead:
use phpFastCache\CacheManager;
CacheManager::getInstance('Devnull', $config);
// An alternative exists:
CacheManager::Devnull($config);
This driver is a development driver and will always return "empty" item, forcing your code to fetch data from source instead of pulling them from cache.
❓ Finally, if you need help, always check out the inevitable README.md