> does the internal node.js send a reset connection back to avoid blocking
It isn't doing anything tricky like that. It just accepts a connection, sets up a stream, and calls you back. The blocking is avoided by the architecture of node which much is written about. On Sat, Mar 3, 2012 at 10:31 PM, puneeth poduri <[email protected]>wrote: > thank you @mark i will try and run the test on the code given at > node.js , i was following a tutorial on how to make web applications > and i wanted to do something more so i wrote a http server looks like > it is working fine there is no problem if i view the page on a > browser. i just have to fine tune the httperf maybe increase the > timeouts. i do have a query regarding node.js when the > http.createServer(<port>,<host>,<function(request,response>(){....}); > is called does the internal node.js send a reset connection back to > avoid blocking or am i totally wrong ? > > On Mar 4, 4:55 am, Mark Hahn <[email protected]> wrote: > > Does it happen with the small server example from the home page of the > node > > website, or only with your code? > > > > On Sat, Mar 3, 2012 at 11:15 AM, puneeth poduri < > [email protected]>wrote: > > > > > > > > > > > > > > > > > dear users i have run some benchmark runs on a custom server using > > > httperf but i always get connection resets when i do so . this can't > > > be explained. i do get the page when i try and view on browser. if i > > > run the same test on an apache there seems to be no problem. > > > > > -- > > > 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 this group, send email to [email protected] > > > To unsubscribe from this group, send email to > > > [email protected] > > > For more options, visit this group at > > >http://groups.google.com/group/nodejs?hl=en?hl=en > > -- > 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 this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > -- 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 this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
