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?
feedback
|
|
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). | |||
|
feedback
|