- Added Expiry Time
Default Lifetime is 30 days / 2592000 Seconds.
You can change it as follows:
$jsonCache = new JsonCache();
$jsonCache->setCachePath($this->cachePath);
$jsonCache->setLifetime(60); //60 Seconds
To disable Lifetime, set Lifetime to 0.
$jsonCache = new JsonCache();
$jsonCache->setCachePath($this->cachePath);
$jsonCache->setLifetime(0);