From 4f80ea243ce29607916333c5bb19d0115ad9f902 Mon Sep 17 00:00:00 2001 From: Blake Mizerany Date: Fri, 3 Jun 2011 16:06:11 -0700 Subject: [PATCH] format --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 4b102d8..4dc79a3 100644 --- a/README.md +++ b/README.md @@ -128,22 +128,22 @@ stores history as far back as it is configured to hold it. The default is ## High Availability - Fraggle has mechanisms to gracefully deal with connection loss. They are: +Fraggle has mechanisms to gracefully deal with connection loss. They are: *Resend / Connection loss* - When a connection is lost and Fraggle successfully reconnects to another - Doozer node, Fraggle will resend most pending requests to the new connection. - This means you will not miss events; Even events that happened while you were - disconnected! All read commands will pick up where they left off. This is - valuable to understand because it means you don't need to code for failure on - reads; Fraggle gracefully handles it for you. - - Write commands will be resent if their `rev` is greater than 0. These are - idempotent requests. A rev of 0 will cause that request's error - callback to be invoked with a Fraggle::Connection::Disconnected response. - You will have to handle these yourself because Fraggle cannot know whether or - not it's safe to retry on your behalf. +When a connection is lost and Fraggle successfully reconnects to another +Doozer node, Fraggle will resend most pending requests to the new connection. +This means you will not miss events; Even events that happened while you were +disconnected! All read commands will pick up where they left off. This is +valuable to understand because it means you don't need to code for failure on +reads; Fraggle gracefully handles it for you. + +Write commands will be resent if their `rev` is greater than 0. These are +idempotent requests. A rev of 0 will cause that request's error +callback to be invoked with a Fraggle::Connection::Disconnected response. +You will have to handle these yourself because Fraggle cannot know whether or +not it's safe to retry on your behalf. **attempt**