Memoization vs. Direct calling
JavaScript performance comparison
Preparation code
<script>
/*
* memoize.js
* by @philogb and @addyosmani
* further optimizations by @mathias
* Released under an MIT license.
*/
function memoize2( fn ) {
return function () {
var args = Array.prototype.slice.call(arguments),
hash = "",
i = args.length;
toString = Object.prototype.toString,
callEm = toString.call({}),
currentArg = null;
while(i--){
currentArg = args[i];
hash += (callEm == toString.call(currentArg)) ?
JSON.stringify(currentArg) : currentArg;
fn.memoize || (fn.memoize = {});
}
return (hash in fn.memoize) ? fn.memoize[hash] :
fn.memoize[hash] = fn.apply( this , args );
};
}
//stoyans version
function memoize7(param){
if (!memoize7.cache) {
memoize7.cache = {};
}
if (!memoize7.cache[param]) {
var result = fib(param);
memoize7.cache[param] = result;
}
return memoize7.cache[param];
}
var fib, fiborg, f;
fiborg = fib = f = function (x) {
if(x < 2) return 1; else return fib(x-1) + fib(x-2);
}
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Memoize2 |
|
pending… |
Directly calling |
|
pending… |
Memoize7 |
|
pending… |
Compare results of other browsers
Revisions
You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:
- Revision 1: published by Addy Osmani
- Revision 2: published by Addy Osmani
0 comments