2017 © Pedro Peláez
 

library cacher

A quick and simple cache that stores and retrieves things from/to a flat file cache system.

image

untoyou/cacher

A quick and simple cache that stores and retrieves things from/to a flat file cache system.

  • Wednesday, November 19, 2014
  • by bluehaoran
  • Repository
  • 1 Watchers
  • 1 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

cacher

A quick and simple cache that stores and retrieves things from/to a flat file cache system., (*1)

Setup

As this is a flat file cache, you need a directory with the appropriate write permissions to it., (*2)

Usage

Once you have a directory, then start Cacher like this:, (*3)

$cache = new \Untoyou\Cacher('/var/tmp/cache');  //replace this with the path to your cache directory.
$cache->store('key', $html);
if ($cache->contains('key')) {
    $html = $cache->fetch('key');       
}

The Versions

19/11 2014

dev-master

9999999-dev

A quick and simple cache that stores and retrieves things from/to a flat file cache system.

  Sources   Download

LGPL-3.0

by Haoran Un

cache flat file

19/11 2014

1.0

1.0.0.0

A quick and simple cache that stores and retrieves things from/to a flat file cache system.

  Sources   Download

LGPL-3.0

by Haoran Un

cache flat file