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
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:
usephpFastCache\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.