Skip to content

Commit

Permalink
This time badges in markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
jwolski committed Jul 15, 2015
1 parent 7e6781f commit eeea857
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# ringpop |build-status| |docs|
# ringpop [![Build Status](https://travis-ci.org/uber/ringpop.svg?branch=master)] (https://travis-ci.org/uber/ringpop) [![Docs Status](https://readthedocs.org/projects/ringpop/badge/?version=latest)] (https://ringpop.readthedocs.org)

Ringpop is a library that brings cooperation and coordination to applications that would otherwise run as a set of independent worker processes.

Ringpop implements a membership protocol that allows those workers to discover one another and use the communication channels established between them as a means of disseminating information, detecting failure and ultimately, converging on a consistent membership list. Consistent hashing is then applied on top of that list and gives an application the ability to define predictable behavior and data storage facilities within a custom keyspace. The keyspace is partitioned and evenly assigned to the individual instances of an application. Clients of the application remain simple and need not know of the underlying cooperation between workers nor chosen partitioning scheme. A request can be sent to any instance and Ringpop intelligently forwards the request to the "correct" instance as defined by a hash ring lookup.
Expand All @@ -17,13 +18,3 @@ For more documentation, go to the [wiki](https://github.com/uber/ringpop/wiki).

# License
ringpop is available under the MIT license. See the LICENSE file for more info.

.. |build-status| image:: https://travis-ci.org/uber/ringpop.svg?branch=master
:alt: Build Status
:scale: 100%
:target: https://travis-ci.org/uber/ringpop

.. |docs| image:: https://readthedocs.org/projects/ringpop/badge/?version=latest
:alt: Documentation Status
:scale: 100%
:target: https://ringpop.readthedocs.org

0 comments on commit eeea857

Please sign in to comment.