I am looking into Rubinius (2.0+) and its actors library for parallel computing challenges.

I am wondering what would happen if an actor for example eats up loads and loads of memory up to the point where it throws a OutOfMemoryException. Does only this one actor dies or does this kill the whole rubinius process?

To put in more generic words: Are Actors/Threads in Rubinius sufficiently isolated from each other that a dying thread will not kill the whole system?

Best regards

Robert

link|improve this question
1  
+1 for the title alone! – Andrew Grimm Jul 29 '11 at 1:27
oh heck! I didnt even realize it until you wrote your comment. ;-) – robertj Jul 29 '11 at 7:55
feedback

1 Answer

Last time I checked the sources the actors in rubinius where simply mapped onto threads (one per actor) so running out of memory would kill your whole process.

All the rules applying to threads should apply to the currently actors implementation.

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.