5

I would like to do some comparison between different boards and architectures (arm/ia32) in terms of usage node.js. Can anyone point to me to a set of relevant benchmark tests that make usage of node.js, if there are any?

I am not looking for general JavaScript benchmarks tests, but something that is node.js related and specific.

Thank you.

1
  • Did you ever find any good benchmarks? Commented Aug 21, 2011 at 21:00

1 Answer 1

3

I'm not too sure if this is what you're looking for, but you could always use ab (a part of the apache-utils package) to benchmark the file served by node and make concurrent requests.

$ ab http://example.com/client.html/ -n 10000 -c 1000

This would test with a 1000 concurrent connections and a total of 10000 connections.

Here are a couple of blog posts you may find interesting if you decide to go ahead with ab

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.