Skip to content

Releases: bookking3000/Guzzcache

v1.0.2

15 Feb 08:51

Choose a tag to compare

  • 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

12 Feb 23:04

Choose a tag to compare

v1.0.1

Merge remote-tracking branch 'origin/master'

Initial Release

12 Feb 22:19
2aa4054

Choose a tag to compare

v1.0.0

Update README.md