We're starting development of the new game project using Ruby. We decided to use one of the asynchronous Ruby servers, but we cannot decide which one to choose. Options are:

  • Goliath
  • Cramp + thin/rainbows
  • rack-fiber_pool + rack + thin/rainbows
  • eventmachine_httpserver

All of them seem to be working with HTTP requests. Cramp also supports Websockets and Server-Side events from the box.

Do you know any pros & cons of these servers?

link|improve this question
Aleksey, have you any new experience to share with us? – Andrei Dec 29 '11 at 12:36
feedback

2 Answers

I've used eventmachine_httpserver to expose a RESTful API in an EventMachine-based IRC bot and would definitely not recommend it for anything serious. It seems more like a minimal proof-of-concept than a serious web server, perhaps best illustrated by the parse_headers hack I had to use.

link|improve this answer
Paul, did you try any other servers of such kind? – Aleksey Dmitriev Oct 10 '11 at 7:29
Nope, sorry. As rough around the edges as eventmachine_httpserver was, it suited my minimal requirements, so I stuck with it. – Paul Annesley Oct 10 '11 at 23:08
feedback

You may also want to look pub/sub services like nats.

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.