Questions tagged [carrot]

Carrot is a synchronous AMQP client written in Ruby, not to be confused with the Carrot2 clustering engine

Carrot is a synchronous AMQP client written in Ruby, not to be confused with the Carrot2 clustering engine.

17 questions
0
votes
1 answer

Regarding Carrot Gems for ruby

I am using carrot gem for message publishing in ruby and my sample code is as follows : Code : require 'carrot' q = Carrot.queue('testqueue', :durable => true) q.publish("sample data") Please can someone tell me how to publish the same data using…
Priya
  • 1
0
votes
1 answer

can't connect to rabbit mq with ruby gem carrot

I am trying to connect to my rabbitmq server. I am using require 'carrot' @client = Carrot.new(:host => 10.xx.xx.xx, :port => 5672) q = @client.queue("my_queue") I am getting this error "#
WebQube
  • 8,510
  • 12
  • 51
  • 93
1
2