From: SEKI Masatoshi Date: 2009-08-29T04:02:24+09:00 Subject: Re: DRb Mysterious Stops On 2009/08/29, at 1:55, Darrin Thompson wrote: > > > I can replicate it with a tiny tiny drb pair of programs. > > On my SLES9 machine: > # cat test.rb > require 'drb' > > class Echo > def ping(length) > return 'a' * length > end > end > > echo = Echo.new > > DRb.start_service("druby://0.0.0.0:9000", echo) > DRb.thread.join DRb.start_service("druby://0.0.0.0:9000", echo, {:load_limit => 2**31}) ?