On Fri, May 11, 2012 at 11:38 PM, Marco Monteiro <[email protected]> wrote: > What do I need to do to get http client to reuse connections and not create > a new one > for each request?
Make sure that a new request is queued by the time the current request finishes. If there is one, the connection is reused. If not, the connection is closed. -- 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
