CARVIEW |
edavis10 / rubyqueues forked from igal/rubyqueues
- Source
- Commits
- Network (2)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (1)
- master ✓
- Tags (0)
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
Documents and sample source code describing message queue options for use with Ruby. — Read more

name | age | message | |
---|---|---|---|
![]() |
.gitignore | Loading commit data... ![]() |
|
![]() |
README.markdown | ||
![]() |
activemq_stomp_eg/ | ||
![]() |
beanstalkd_eg/ | ||
![]() |
comparison.html | ||
![]() |
delayed_job_eg/ | ||
![]() |
kestrel_eg/ | ||
![]() |
memcacheq_eg/ | ||
![]() |
rabbitmq_amqp_eg/ | Fri Apr 17 17:44:11 -0700 2009 | Updated 'RabbitMQ with AMQP' text. [igal] |
![]() |
sparrow_eg/ | Tue Apr 14 12:53:15 -0700 2009 | Clarified link titles for Sparrow and Starling. [igal] |
![]() |
starling_eg/ |
Ruby message queue showdown
Updated: 2009-04-17
Summary
Using message queues effectively can significantly improve the efficiency and responsiveness of applications. Ruby programmers are lucky to have many messaging options to choose from, but are cursed with having to pick between them. These documents and source code samples attempt to provide basic information to help Ruby programmers better understand these alternatives.
Details
- Comparison table of message queues
- ActiveMQ with Stomp
- Beanstalkd
- Delayed::Job
- Kestrel
- MemcacheQ
- RabbitMQ with AMQP
- Sparrow
- Starling
Caveat emptor
I have not used most of these messaging systems outside this evaluation, so please perform your own analysis before making an important decision. I'll gladly incorporate additional information and corrections that you send me so that I can accurately represent each alternative.
The naive benchmark does NOT acurately represent the performance of these systems under a realistic workload. This naive benchmark simply has a single client making sequential calls, whereas a realistic workload would include a large number of clients working in bursts. For example, Starling is much faster than Kestrel when talking to a few clients, while Kestrel is allegedly much faster than Starling when talking to a large number of clients.