All Projects → ruby-amqp → March_hare

ruby-amqp / March_hare

Licence: mit
Idiomatic, fast and well-maintained JRuby client for RabbitMQ

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to March hare

rabbitmq-stomp
RabbitMQ STOMP plugin
Stars: ✭ 49 (-49.48%)
Mutual labels:  rabbitmq, messaging
Php Amqplib
The most widely used PHP client for RabbitMQ
Stars: ✭ 3,950 (+3972.16%)
Mutual labels:  rabbitmq, messaging
Langohr
A small, feature complete Clojure client for RabbitMQ that embraces AMQP 0.9.1 model
Stars: ✭ 309 (+218.56%)
Mutual labels:  rabbitmq, messaging
bunnybus
Enterprise bus facade for creating a data transit system.
Stars: ✭ 45 (-53.61%)
Mutual labels:  rabbitmq, messaging
Rabbitmqbundle
RabbitMQ Bundle for the Symfony2 web framework
Stars: ✭ 1,125 (+1059.79%)
Mutual labels:  rabbitmq, messaging
rabbitmq-jms-client
RabbitMQ JMS client
Stars: ✭ 51 (-47.42%)
Mutual labels:  rabbitmq, messaging
Masstransit
Distributed Application Framework for .NET
Stars: ✭ 4,103 (+4129.9%)
Mutual labels:  rabbitmq, messaging
Rabbitmq Mqtt
RabbitMQ MQTT plugin
Stars: ✭ 169 (+74.23%)
Mutual labels:  rabbitmq, messaging
Rabbitmq Amqp1.0
AMQP 1.0 support for RabbitMQ
Stars: ✭ 88 (-9.28%)
Mutual labels:  rabbitmq, messaging
Remit
RabbitMQ-backed microservices supporting RPC, pubsub, automatic service discovery and scaling with no code changes.
Stars: ✭ 24 (-75.26%)
Mutual labels:  rabbitmq, messaging
sample-spring-cloud-stream
sample microservices communicating asynchronously using spring cloud stream, rabbitmq
Stars: ✭ 22 (-77.32%)
Mutual labels:  rabbitmq, messaging
Humusamqp
PHP 7 AMQP library
Stars: ✭ 70 (-27.84%)
Mutual labels:  rabbitmq, messaging
Rabbitmq Objc Client
RabbitMQ client for Objective-C and Swift
Stars: ✭ 207 (+113.4%)
Mutual labels:  rabbitmq, messaging
rabbit
Build Elixir applications with RabbitMQ
Stars: ✭ 36 (-62.89%)
Mutual labels:  rabbitmq, messaging
Kombu
Kombu is a messaging library for Python.
Stars: ✭ 2,263 (+2232.99%)
Mutual labels:  rabbitmq, messaging
Stompjs
Javascript and Typescript Stomp client for Web browsers and node.js apps
Stars: ✭ 324 (+234.02%)
Mutual labels:  rabbitmq, messaging
Garagemq
AMQP message broker implemented with golang
Stars: ✭ 153 (+57.73%)
Mutual labels:  rabbitmq, messaging
Servicebus
Simple service bus for sending events between processes using amqp.
Stars: ✭ 415 (+327.84%)
Mutual labels:  rabbitmq, messaging
Rabbitmq Server
Open source RabbitMQ: core server and tier 1 (built-in) plugins
Stars: ✭ 9,064 (+9244.33%)
Mutual labels:  rabbitmq, messaging
Bunny
Bunny is a popular, easy to use, mature Ruby client for RabbitMQ
Stars: ✭ 1,224 (+1161.86%)
Mutual labels:  rabbitmq, messaging

March Hare, a JRuby RabbitMQ Client

March Hare is an idiomatic, fast and well-maintained (J)Ruby DSL on top of the RabbitMQ Java client. It strives to combine strong parts of the Java client with over 4 years of experience using and developing Ruby amqp gem and Bunny.

Why March Hare

  • Concurrency support on the JVM is excellent, with many tools & approaches available. Lets make use of it.
  • RabbitMQ Java client is rock solid and supports every RabbitMQ feature. Very nice.
  • It is screaming fast thanks to all the heavy duty being done in the pretty efficient & lightweight Java code.
  • It uses synchronous APIs where it makes sense and asynchronous APIs where it makes sense. Some other Ruby RabbitMQ clients only use one or the other.
  • amqp gem has certain amount of baggage it cannot drop because of backwards compatibility concerns. March Hare is a clean room design, much more open to radical new ideas.

What March Hare is not

March Hare is not

  • A replacement for the RabbitMQ Java client
  • A replacement for Bunny, the most popular Ruby RabbitMQ client
  • A long running "work queue" service

Project Maturity

March Hare has been around since 2011 and can be considered a mature library.

It is based on the RabbitMQ Java client, which is officially supported by the RabbitMQ team at VMware.

Installation, Dependency

With Rubygems

gem install march_hare

With Bundler

gem "march_hare", "~> 4.3"

Documentation

Guides

MarchHare documentation guides are mostly complete.

Examples

Several code examples are available. Our test suite also has many code examples that demonstrate various parts of the API.

Reference

API reference is available.

Supported Ruby Versions

March Hare supports JRuby 9.0 or later.

Supported JDK Versions

March Hare requires JDK 8 or later.

Change Log

See ChangeLog.md.

Continuous Integration

Continuous Integration status

CI is hosted by travis-ci.org

Testing

You'll need a running RabbitMQ instance with all defaults and management plugin enabled on your local machine to run the specs.

To boot one via docker you can use:

docker run -p 5672:5672 -p 15672:15672 rabbitmq:3-management

And then you can run the specs using rspec:

bundle exec rspec

License

MIT, see LICENSE in the repository root

Copyright

Theo Hultberg, Michael Klishin, 2011-2020.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].