Skip to content

Instantly share code, notes, and snippets.

@warpech
Last active September 4, 2019 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warpech/be4048ef39e18364ddce561546eb64b7 to your computer and use it in GitHub Desktop.
Save warpech/be4048ef39e18364ddce561546eb64b7 to your computer and use it in GitHub Desktop.
Lookup tables - Set and Get #jsbench #jsperf (http://jsbench.github.io/#be4048ef39e18364ddce561546eb64b7) #jsbench #jsperf
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Lookup tables - Set and Get #jsbench #jsperf</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script>
<script src="./suite.js"></script>
</head>
<body>
<h1>Open the console to view the results</h1>
<h2><code>cmd + alt + j</code> or <code>ctrl + alt + j</code></h2>
</body>
</html>
"use strict";
(function (factory) {
if (typeof Benchmark !== "undefined") {
factory(Benchmark);
} else {
factory(require("benchmark"));
}
})(function (Benchmark) {
var suite = new Benchmark.Suite;
Benchmark.prototype.setup = function () {
const obj = {};
const map1 = new Map();
const map2 = new Map();
const weakMap1 = new WeakMap();
const weakMap2 = new WeakMap();
const aaa = {
};
const bbb = {
};
};
suite.add("obj[\"aaa\"] = 1;", function () {
obj["aaa"] = 1;
obj["bbb"] = obj["aaa"] + 1;
});
suite.add("map1.set(\"aaa\", 1);", function () {
map1.set("aaa", 1);
map1.set("bbb", map1.get("aaa") + 1)
});
suite.add("weakMap1.set(\"aaa\", 1);", function () {
weakMap1.set("aaa", 1);
weakMap1.set("bbb", weakMap1.get("aaa") + 1)
});
suite.add("map2.set(aaa, {val: 1});", function () {
map2.set(aaa, {val: 1});
map2.set(bbb, {val: map2.get(aaa).val + 1})
});
suite.add("weakMap2.set(aaa, {val: 1});", function () {
weakMap2.set(aaa, {val: 1});
weakMap2.set(bbb, {val: weakMap2.get(aaa).val + 1})
});
suite.on("cycle", function (evt) {
console.log(" - " + evt.target);
});
suite.on("complete", function (evt) {
console.log(new Array(30).join("-"));
var results = evt.currentTarget.sort(function (a, b) {
return b.hz - a.hz;
});
results.forEach(function (item) {
console.log((idx + 1) + ". " + item);
});
});
console.log("Lookup tables - Set and Get #jsbench #jsperf");
console.log(new Array(30).join("-"));
suite.run();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment