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

I have a Rails app that uses Redis pubsub to communicate with a separate node.js app.

It has been running fine until I made a change to the node side which caused the subscriber to fail to complete its task. For some reason, this blocked Rails and all of my publish commands queued up and crashed Rails.

I have written a little test app that simulated the problem by doing a setTimeout for 5 seconds on the node side which I expected to hold up Rails. Unfortunately, that did not block so I'm not even sure I'm on the correct path.

def publish(message)
  begin
    $redis_pub_sub.publish 'some_channel', message
  rescue
    puts "Redis unavailable"
  end
end

So the following actually doesn't block but the setup on Node is very similar. The difference being, I would run a function that never called its final callback.

var redis = require("redis"),
    pub_sub = redis.createClient();


pub_sub.on("message", function(channel, message) {
   var printOut = function() {
        console.log(message);
   };
   setTimeout(printOut,5000);            
});

pub_sub.subscribe('some_channel');

I still have some digging to do but I thought I would ask the question about blocking in Rails anyway.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.