library memoize-apc
Memoize functionality backed by APC cache.
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
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);
dev-master
9999999-dev
Memoize functionality backed by APC cache.
Sources
Download
MIT
The Requires