2017 © Pedro Peláez
 

library cache

A wrapper around caching systems.

image

tdt/cache

A wrapper around caching systems.

  • Wednesday, February 6, 2013
  • by coreation
  • Repository
  • 5 Watchers
  • 0 Stars
  • 845 Installations
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

tdt/cache

Build Status, (*1)

This repository holds a wrapper around a caching system. You can use NoCache if no caching system is installed, or MemCache. This allows the user to provide caching in his code, and switch to other caching systems later on if necessary., (*2)

Usage


$c = Cache::getInstance( array("system" => "Memcache", "host" => "localhost", "port" => 11211 ) ); $c->set("key", $objectToCache, $TTL); // TTL is optional $cachedObject = $c->get("key"); // delete the cachedObject $c->delete("key");

The Versions

06/02 2013

dev-master

9999999-dev http://thedatatank.com

A wrapper around caching systems.

  Sources   Download

AGPLv3

The Requires

 

caching

06/02 2013

v1.0

1.0.0.0 http://thedatatank.com

A wrapper around caching systems.

  Sources   Download

AGPLv3

The Requires

 

caching