Re: [nodejs] how to do performance test of my POST service

2012-08-03 Thread josh
awesome advice. i wanted to do that but didn't figure it out yet! -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to thi

Re: [nodejs] how to do performance test of my POST service

2012-08-03 Thread Martin Cooper
On Fri, Aug 3, 2012 at 9:57 AM, josh wrote: > I am trying to improve our existing file upload API (using sinatra) and see > if Node can be a better alternative. > i am using formidable to upload the file, than I stream(read) the file from > disk into put request that saves it on our cloud servers,

[nodejs] how to do performance test of my POST service

2012-08-03 Thread josh
I am trying to improve our existing file upload API (using sinatra) and see if Node can be a better alternative. i am using formidable to upload the file, than I stream(read) the file from disk into put request that saves it on our cloud servers, and finally, I save some meta data into a mysql.