Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Looking to use a message queue in a small web app I'm building with node.js. I looked at resque but not sure that's appropriate. The goal is to push notifications to clients based on backend and other client actions with socketio. I could do this with just socketio but I thought maybe a proper message queue would make this cleaner and I wouldn't have to reinvent the wheel.

What are the options out there?

share|improve this question
1  
Not sure, but this seems like something node would do well by itself! – TK-421 Jan 15 '11 at 17:28
I was thinking that too. – Bjorn Tipling Jan 15 '11 at 17:35
You're probably aware of this already, but there's one listed on the Modules page: github.com/ry/node/wiki/modules#message-queue . I guess there's always the cost of your own development time to consider. – TK-421 Jan 15 '11 at 17:40
1  
@ TK-421 and Bjorn Tipling That's indeed something node can do itself, as long as you only have one node process. An external solution such as Redis is needed if you have different processes for different parts of your application (i.e. webserver, auth provider, notif center etc.). And of course you can then connect with non node processes as well. – Louis Chatriot Dec 14 '12 at 9:40

5 Answers

up vote 10 down vote accepted

you could use redis with the lightning fast node_redis client. It even has built-in pubsub semantics.

share|improve this answer
That works. Now to read the redis docs. :O – Bjorn Tipling Jan 16 '11 at 2:08
You should also read simonwillison.net/static/2010/redis-tutorial to learn to use redis. – Alfred Jan 16 '11 at 5:07

You could use the node STOMP client. This would let you integrate with a variety of message queues including:

  • ActiveMQ
  • RabbitMQ
  • HornetQ

I haven't used this library before, so I can't vouch for its quality. But STOMP is a pretty simple protocol so I suspect you can hack it into submission if necessary.

Another option is to use beanstalkd with node. beanstalkd is a very fast "task queue" written in C that is very good if you don't need the feature flexibility of the brokers listed above.

share|improve this answer

I recommend trying Kestrel, it's fast and simple as Beanstalk but supports fanout queues. Speaks memcached. It's built using Scala and used at Twitter.

share|improve this answer

Shameless plug: I'm working on Bokeh: a simple, scalable and blazing-fast task queue built on ZeroMQ. It supports pluggable data stores for persisting tasks, currently in-memory, Redis and Riak are supported. Check it out.

share|improve this answer

If you're willing to run a RabbitMQ broker... Here's a couple of recommendations I can make:

node-amqp: A RabbitMQ client that I have successfully used in combination with Socket.IO to make a real-time multi-player game and chat application amongst other things. Seems reliable enough.

zeromq.node: If you want to go down the non-brokered route this might be worth a look. More work to implement functionality but your more likely to get lower latency and higher though-put.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.