website: Minor cleanups

This commit is contained in:
Armon Dadgar 2014-04-11 12:03:23 -07:00
parent d6bccb8905
commit f8452fe7fd
2 changed files with 6 additions and 6 deletions

View File

@ -30,7 +30,7 @@ and coordinating infrastructure. It provides several key features:
* **Key/Value Store**: Applications can make use of Consul's hierarchical key/value
store for any number of purposes including dynamic configuration, feature flagging,
coordination, leader election, etc. The simple HTTP API makes dead easy to use.
coordination, leader election, etc. The simple HTTP API makes it easy to use.
* **Multi Datacenter**: Consul supports multiple datacenters out of the box. This
means users of Consul do not have to worry about building additional layers of

View File

@ -37,9 +37,9 @@ of [multiple gossip pools](/docs/internals/architecture.html), so that
the performance of Serf over a LAN can be retained while still using it over
a WAN for linking together multiple datacenters.
Consul is also more opinionated in its usage than Serf, enabling Serf
to be used in a wider variety of cases. Consul also uses a CP architecture,
favoring consistency over availability. Serf is a AP system, and sacrifices consistency
for availability. This means Consul cannot operate if the central servers cannot
form a quorum, while Serf will continue to function under almost all circumstances.
Consul is opinionated in its usage, while Serf is a more flexible and
general purpose tool. Consul uses a CP architecture, favoring consistency over
availability. Serf is a AP system, and sacrifices consistency for availability.
This means Consul cannot operate if the central servers cannot form a quorum,
while Serf will continue to function under almost all circumstances.