2017 © Pedro Peláez
 

library memoize-apc

Memoize functionality backed by APC cache.

image

adduc/memoize-apc

Memoize functionality backed by APC cache.

  • Wednesday, May 13, 2015
  • by Adduc
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

adduc\memoize-apc

This library provides the ability to wrap a call to a function with caching functionality backed by Apc. It builds on the memoize-php library by Dominion Enterprises., (*1)

Example

$memoize = new Adduc\Memoize\Apc();

$compute = function() {
    // Perform some long operation that you want to memoize
};

$result = $memoize->memoizeCallable('myLongOperation', $compute);

The Versions

13/05 2015

dev-master

9999999-dev

Memoize functionality backed by APC cache.

  Sources   Download

MIT

The Requires