5

Is there an Erlang AMQP client library that is not tied to the hip with RabbitMQ?

I know about rabbitmq-erlang-client but I would like something more decoupled... pain when it comes to packaging this stuff for a Debian repository, installation etc...

2240
  • 1,547
  • 2
  • 12
  • 30
jldupont
  • 93,734
  • 56
  • 203
  • 318

1 Answers1

1

I know it isn't what you want, but I found that it wasn't too bad to package up the bits of rabbitmq that the rabbitmq-erlang-client needs, plus the rabbitmq-erlang-client, into a Debian packages, and get that working pretty easily.

I have a build-dep on rabbitmq-server though, so it's not the cleanest solution. And it never went into production.

I didn't find an alternative AMQP client for erlang at the time either.

TBBle
  • 1,436
  • 10
  • 27
  • Actually I wrote one that's about 90% completed: I don't have time to finish it at the moment though.... Thanks anyways. – jldupont May 03 '10 at 14:49
  • Any chance of your library being published as-is for someone to complete? (I'm not sure that'd be me, I'm not in that problem-space at the moment) – TBBle Jun 09 '10 at 17:52
  • You can try http://github.com/bjnortier/rabbits_foot at your own peril. I've just created it and the example works, but some of the deeper dependencies might be missing – bjnortier Sep 21 '10 at 09:34