-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
57 lines (52 loc) · 2.51 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
title: Langohr, an idiomatic Clojure RabbitMQ client | Clojure AMQP 0.9.1 client
layout: default
---
<main class="bs-masthead" id="content" role="main">
<div class="container">
<h1>Langohr</h1>
<p class="lead">
An idiomatic Clojure client for RabbitMQ that embraces the <a href="http://www.rabbitmq.com/tutorials/amqp-concepts.html">AMQP 0.9.1 model</a>
</p>
<p>
<a class='btn btn-primary btn-lg' href='/articles/getting_started.html'>Get Started! »</a>
</p>
<ul class="bs-masthead-links">
<li><a href="/articles/guides.html">Read doc guides »</a></li>
<li><a href='https://groups.google.com/forum/?fromgroups#!forum/clojure-rabbitmq'>Join the Mailing List »</a></li>
<li><a href='http://github.com/michaelklishin/langohr'>Contribute »</a></li>
</div>
</main>
<div class="container">
<div class="row">
<div class="col-lg-4">
<h2>Embraces AMQP 0.9.1 Model</h2>
<p>Langohr embraces the <a href="http://www.rabbitmq.com/tutorials/amqp-concepts.html">AMQP 0.9.1 model</a> and RabbitMQ extensions to it. The API follows
the protocol and uses established terminology.</p>
</div>
<div class="col-lg-4">
<h2>Idiomatic</h2>
<p>With Langohr, common operations don't require Java interop. Get a healthy dose API sugar and automatic conversion to Clojure data structures where it makes sense.</p>
</div>
<div class="col-lg-4">
<h2>Learns From Others</h2>
<p>Langohr learns from several years of work with (and on) <a href="http://rubybunny.info">the most popular Ruby RabbitMQ client</a>, the official RabbitMQ Java and .NET clients, and <a href="http://rubymarchhare.info">March Hare</a>.</p>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<h2>Efficient</h2>
<p>Very low overhead over the RabbitMQ Java client</p>
</div>
<div class='col-lg-4'>
<h2>Handles flaky networks</h2>
<p>Langohr is designed with ops issues in mind. For example, it
automatically reconnects and recovers channels after a network
failure.</p>
</div>
<div class="col-lg-4">
<h2>Ready for PaaS</h2>
<p>Langohr is ready to be used in environments such as <a href="http://www.gopivotal.com/platform-as-a-service/pivotal-cf">Pivotal CF</a>, <a href="http://cloudfoundry.org">Cloud Foundry</a>, and Heroku with <a href="https://addons.heroku.com/marketplace/cloudamqp">Cloud AMQP</a> and <a href="https://addons.heroku.com/rabbitmq-bigwig">BigWig</a> add-ons.</p>
</div>
</div>
</main>