revert Merge branch 'main' of http://47.107.152.87:3000/liubiao/APP # Conflicts: # .gitignore # pages/common/index/index.vue # unpackage/dist/dev/app-plus/app-config-service.js # unpackage/dist/dev/app-plus/app-service.js # unpackage/dist/dev/app-plus/app-view.js # unpackage/dist/dev/app-plus/manifest.json # utils/request.js
21 lines
488 B
JavaScript
21 lines
488 B
JavaScript
|
|
const mqtt = require('../')
|
|
const parser = mqtt.parser()
|
|
const max = 10000000
|
|
let i
|
|
const start = Date.now() / 1000
|
|
|
|
for (i = 0; i < max; i++) {
|
|
parser.parse(Buffer.from([
|
|
48, 10, // Header (publish)
|
|
0, 4, // Topic length
|
|
116, 101, 115, 116, // Topic (test)
|
|
116, 101, 115, 116 // Payload (test)
|
|
]))
|
|
}
|
|
|
|
const time = Date.now() / 1000 - start
|
|
console.log('Total packets', max)
|
|
console.log('Total time', Math.round(time * 100) / 100)
|
|
console.log('Packet/s', max / time)
|