From: Minero Aoki Date: 2001-06-30T22:26:28+09:00 Subject: [ruby-talk:17108] Re: HTTP connection-alive and threading Hi, In mail "[ruby-talk:17100] HTTP connection-alive and threading" Michael Neumann wrote: > Do following calls to Net::HTTP#post (or get...) use the > same connection, i.e. do they use HTTP connection-alive? > > Some tests have shown me, that Net::HTTP is not thread-safe, > i.e. I cannot call two #post methods concurrently. > Is that true? Both is yes. Please use other HTTP object in each thread. It is work fine in most cases. Minero Aoki.