Tagged Questions
5
votes
1answer
1k views
How do I learn Concurrency in Ruby?
Yesterday I read this great article about Concurrency in JRuby from EngineYard and I realise I need to leverage my skills about concurrency in Ruby, by mentioning Ruby here I mean it could be all ...
3
votes
1answer
304 views
What do goroutines, Ruby Fibers, etc. look like to the OS/Kernel?
In process concurrency and thread concurrency it's quite obvious how the kernel sees these as they map directly to real things that the kernel manages. When it comes to Golang goroutines and Ruby ...
0
votes
0answers
11 views
Is Resque appropriate for an evented application?
As the title says, is Resque appropriate for an evented application that requires a decent amount of speed? I'm working on a server application that emulates the default Minecraft server, and I was ...