Last active
July 20, 2018 20:41
-
-
Save CodeJjang/5ef0b40a1d4f2f2d1746eef92b6adbd0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Benchmark = require('benchmark'); | |
const _ = require('lodash'); | |
const suite = new Benchmark.Suite; | |
const itemsLen = 10000; | |
const arr = new Array(itemsLen); | |
const precision = 3; | |
suite.add('Promise.all', () => promiseAllLoop()) | |
.add('Native Loop', () => nativeLoop()) | |
.add('Lodash ForEach', () => lodashForEach()) | |
.on('error', () => console.error(this.error)) | |
.on('complete', function () { | |
const promiseAllInMs = this[0].stats.mean * 1000; | |
const nativeLoopInMs = this[1].stats.mean * 1000; | |
const lodashInMs = this[2].stats.mean * 1000; | |
console.log(`Promise.all Average: ${promiseAllInMs.toFixed(precision)}`); | |
console.log(`Native Loop Average: ${nativeLoopInMs.toFixed(precision)}`); | |
console.log(`Lodash ForEach Average: ${lodashInMs.toFixed(precision)}`); | |
console.log('Fastest is ' + this.filter('fastest').map('name')); | |
}) | |
.run({ 'async': true }); | |
const promiseAllLoop = async () => { | |
await Promise.all(arr.map(async (value) => { })); | |
} | |
const nativeLoop = () => { | |
let i = 0; | |
const len = arr.length; | |
for (; i < len; ++i) { | |
const value = arr[i]; | |
} | |
} | |
const lodashForEach = () => { | |
_.forEach(arr, (value) => { }); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment