Skip to content

v1.0.2

Latest

Choose a tag to compare

@bookking3000 bookking3000 released this 15 Feb 08:51
· 1 commit to master since this release
  • 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);