You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
376 B

var mqtt = require('../')
, max = 10000000
, i
, start = Date.now()
, time
, buf = new Buffer('test')
for (i = 0; i < max; i++) {
mqtt.generate({
cmd: 'publish'
, topic: 'test'
, payload: buf
})
}
time = Date.now() - start
console.log('Total time', time)
console.log('Total packets', max)
console.log('Packet/s', max / time * 1000)