views:

478

answers:

1

From my understanding, Python's twisted framework provides a higher-level abstraction for networking communications (?).

I am looking for a Ruby equivalent of twisted to use in a Rails application.

+4  A: 

Take a look at EventMachine. It's not as extensive as Twisted but it's built around the same concepts of event-driven network programming.

Patjoh