From 4108bc445dd1397fb4e2dc43d7aca562847d59e1 Mon Sep 17 00:00:00 2001 From: Colin Skow Date: Sun, 8 May 2016 12:53:35 -0700 Subject: [PATCH] improved docs --- readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.md b/readme.md index 2843d8e..454c437 100644 --- a/readme.md +++ b/readme.md @@ -87,6 +87,8 @@ All `start` options will be passed directly to `PouchDB.replicate`: * `options.maxTimeout` - the retry timeout for the default backoff will never exceed this value (default 600000, 10 min). Set to 0 to allow infinite backoff. * `options.back_off_function` - supply your own backoff function. `maxTimeout` has no effect with this option. +All write requests will ALWAYS go to the remote db first, and the promise will only resolve after changes are confirmed to have replicated to local. When replication is paused, all read requests will also go to remote. After the initial replication has finished all read requests will come from the local db as long as replication stays active. + Road Map ---