Nodejs Benchmark 模块的使用
2021/4/15 12:28:23
本文主要是介绍Nodejs Benchmark 模块的使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
nodejs 性能测试 benchmark
test.js
const benchmark = require('benchmark'); const suite = new benchmark.Suite; // 添加测试 suite.add('RegExp', function () { /o/.test('Hello World'); }).add('indexOf', function () { 'Hello World'.indexOf('o'); }).on('cycle', function (e) { console.log(String(e.target)) }).on('complete', function () { console.log('The fasted method is ' + this.filter('fastest').map('name')); }).run({'async': true})
output
RegExp x 26,365,573 ops/sec ±3.08% (70 runs sampled) indexOf x 786,281,744 ops/sec ±2.26% (78 runs sampled) The fasted method is indexOf
这篇关于Nodejs Benchmark 模块的使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Vue CLI多环境配置学习:从入门到实践
- 2024-11-24Vue CLI多环境配置学习:新手入门教程
- 2024-11-24Vue CLI学习:初学者指南
- 2024-11-24Vue CLI学习:从入门到上手的简单教程
- 2024-11-24Vue3+Vite学习:从零开始的前端开发之旅
- 2024-11-24Vue3阿里系UI组件学习入门教程
- 2024-11-24Vue3的阿里系UI组件学习入门指南
- 2024-11-24Vue3公共组件学习:新手入门教程
- 2024-11-24Vue3公共组件学习入门指南
- 2024-11-24vue3核心功能响应式变量学习