Memoize – Complete memoize solution for JavaScript
Originally derived from es5-ext package.
Memoization is best technique to save on memory or CPU cycles when we deal with repeated operations. For detailed insight see: http://en.wikipedia.org/wiki/Memoization
Features
Usage
var memoize = require('memoizee');
var fn = function (one, two, three) { };
memoized = memoize(fn);
memoized('foo', 3, 'bar');
memoized('foo', 3, 'bar');
Installation
NPM
In your project path:
$ npm install memoizee
Browser
Browser bundle can be easily created with help of modules-webmake. Mind that it relies on some EcmaScript5 features, so for older browsers you need as well es5-shim
Configuration
All below options can be applied in any combination
Arguments length
By default fixed number of arguments that function take is assumed (it's read from function's length
property) this can be overridden:
memoized = memoize(fn, { length: 2 });
memoized('foo');
memoized('foo', undefined);
memoized('foo', 3, {});
memoized('foo', 3, 13);
Dynamic length behavior can be forced by setting length to false
, that means memoize will work with any number of arguments.
memoized = memoize(fn, { length: false });
memoized('foo');
memoized('foo');
memoized('foo', undefined);
memoized('foo', undefined);
memoized('foo', 3, {});
memoized('foo', 3, 13);
memoized('foo', 3, 13);
Primitive mode
If we work with large result sets, or memoize hot functions, default mode may not perform as fast as we expect. In that case it's good to run memoization in primitive mode. To provide fast access, results are saved in hash instead of an array. Generated hash ids are result of arguments to string convertion. Mind that this mode will work correctly only if stringified arguments produce unique strings.
memoized = memoize(fn, { primitive: true });
memoized('/path/one');
memoized('/path/one');
Resolvers
When not working in primitive mode but expecting arguments of certain type it's good to coerce them before doing memoization. We can do that by passing additional resolvers array:
memoized = memoize(fn, { length: 2, resolvers: [String, Boolean] });
memoized(12, [1,2,3].length);
memoized("12", true);
memoized({ toString: function () { return "12"; } }, {});
Memoizing asynchronous functions
With async option we indicate that we memoize asynchronous function.
Operations that result with an error are not cached.
afn = function (a, b, cb) {
setTimeout(function () {
cb(null, a + b);
}, 200);
};
memoized = memoize(afn, { async: true });
memoized(3, 7, function (err, res) {
memoized(3, 7, function (err, res) {
});
});
memoized(3, 7, function (err, res) {
});
Memoizing a method
When we are defining a prototype, we may want to define method that will memoize it's results in relation to each instance. Basic way to obtain that would be:
var Foo = function () {
this.bar = memoize(this.bar.bind(this));
};
Foo.prototype.bar = function () {
};
With method option we can configure memoization directly on prototype:
var Foo = function () {
};
Foo.prototype.bar = memoize(function () {
}, { method: 'bar' });
Additionally we may provide descriptor which would be used for defining method on instance object:
var Foo = function () {
};
Foo.prototype.bar = memoize(function () {
}, { method: { name: 'bar', descriptor: { configurable: true } } });
Cache handling
Manual clean up:
Clear data for particular call.
memoized.clear('foo', true);
Arguments passed to clear
are treated with same rules as input arguments passed to function
Clear all cached data:
memoized.clearAll();
Expire cache after given period of time
With maxAge option we can ensure that cache for given call is cleared after predefined period of time
memoized = memoize(fn, { maxAge: 1000 });
memoized('foo', 3);
memoized('foo', 3);
setTimeout(function () {
memoized('foo', 3);
memoized('foo', 3);
}, 2000);
Reference counter
We can track number of references returned from cache, and manually clear them. When last reference is cleared, cache is purged automatically:
memoized = memoize(fn, { refCounter: true });
memoized('foo', 3);
memoized('foo', 3);
memoized('foo', 3);
memoized.clearRef('foo', 3);
memoized.clearRef('foo', 3);
memoized.clearRef('foo', 3);
memoized('foo', 3);
Limiting cache size
With max option you can limit cache size. It works on first-in/first-out basis.
memoized = memoize(fn, { max: 2 });
memoized('foo', 3);
memoized('bar', 7);
memoized('foo', 3);
memoized('bar', 7);
memoized('lorem', 11);
memoized('bar', 7);
memoized('foo', 3);
memoized('lorem', 11);
memoized('foo', 3);
memoized('bar', 7);
Registering dispose callback
You can register callback that is called on each value being removed from cache:
memoized = memoize(fn, { dispose: function (value) { } });
var foo3 = memoized('foo', 3);
var bar7 = memoized('bar', 7);
memoized.clear('foo', 3);
memoized.clear('bar', 7);
Profiling & Statistics
If you want to make sure how much you benefit from memoization or just check if memoization works as expected, loading profile module will give access to all valuable information.
Module needs to be imported before any memoization (that we want to track) is configured. Mind also that running profile module affects performance, it's best not to use it in production environment
var memProfile = require('memoizee/lib/profile');
Access statistics at any time:
memProfile.statistics;
console.log(memProfile.log());
Example console output:
------------------------------------------------------------
Memoize statistics:
Init Cache %Cache Avg init time Source location
11604 35682 75.46 0.000s (all)
2112 19901 90.41 0.000s at /Users/medikoo/Projects/_packages/next/lib/fs/is-ignored.js:276:12
2108 9087 81.17 0.001s at /Users/medikoo/Projects/_packages/next/lib/fs/is-ignored.js:293:10
6687 2772 29.31 0.000s at /Users/medikoo/Projects/_packages/next/lib/fs/watch.js:125:9
697 3922 84.91 0.000s at /Users/medikoo/Projects/_packages/next/lib/fs/is-ignored.js:277:15
------------------------------------------------------------
- Init – Initial hits
- Cache – Cache hits
- %Cache – What's the percentage of cache hits (of all function calls)
- Avg init time – Average execution time of initial call
- Source location – Where in the source code given memoization was initialized
Tests
$ npm test