Releases: bookking3000/Guzzcache
Releases · bookking3000/Guzzcache
v1.0.2
- 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);
Fix Autoloading
v1.0.1 Merge remote-tracking branch 'origin/master'
Initial Release
v1.0.0 Update README.md