From: Clifford Heath Date: 2007-11-07T13:32:12+09:00 Subject: Re: JRuby performance questions answered Roger Pack wrote: > If you run multiple threads I assume there isn't an extra memory cost > for that--is that right? Every thread is going to need its own stack, but that'll be small compared to the startup overhead. I'm sure Charles will elaborate. I'm guessing that JRuby still doesn't support continuations...? I think that would require the "spaghetti stack" model, which would remove most of the per-thread initial stack overhead. Clifford Heath.