The log I'm getting from this example app shows a minimum response time of 
4 - 17 ms.   The route itself is doing nothing. Is this the quickest 
response node can do on the bbb?  The board is only running the example 
server.

GET / 200 16.876 ms - 0
GET / 200 4.474 ms - 0
GET / 200 4.592 ms - 0
GET / 200 4.375 ms - 0
GET / 200 4.858 ms - 0
GET / 200 4.613 ms - 0
GET / 200 4.588 ms - 0
GET / 200 4.397 ms - 0
GET / 200 4.667 ms - 0
GET / 200 4.406 ms - 0


Current experiment code

var express = require('express');
var app = express();

app.configure(function() {
    app.use(express.logger('dev'));  
});

app.get('/', function (req, res) {
  res.send('')
})

var server = app.listen(3000, '0.0.0.0', function () {

  var host = server.address().address
  var port = server.address().port

  console.log('Example app listening at http://%s:%s', host, port)

})



-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to