mqtt stuff added

This commit is contained in:
2018-05-16 10:44:10 +02:00
parent 74584cdbbe
commit c7eb46b346
499 changed files with 55775 additions and 19 deletions

21
node_modules/mqtt-packet/benchmarks/parse.js generated vendored Normal file
View File

@ -0,0 +1,21 @@
var mqtt = require('../')
var parser = mqtt.parser()
var max = 10000000
var i
var start = Date.now() / 1000
var time
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)
]))
}
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)