Is it possible to create 2 Ruby's Fibers that call each other forever? Would Ruby eventually crash with the stack overflow or do the Fibers not consume stack space?

link|improve this question

FWIW Ruby fibers have a 4k stack limit. There was recently some discussion on Github, regarding fibers on Rails: github.com/rails/rails/issues/2153#issuecomment-2109630 – dwhalen Sep 16 '11 at 19:54
feedback

1 Answer

If you write an infinite loop in any programming language, something will eventually break. I'm not familiar with Ruby Fibers, but if they are calling each other via methods, then the stack will overflow eventually.

Other things that can break in an infinite loop scenario are anything that is a limited resource, so disk space and network bandwidth are usually the next two (the network because things usually time out).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.