From ea32203f6d0ea477b15457510ebfd3684ce352fa Mon Sep 17 00:00:00 2001 From: Rafa Mel Date: Fri, 14 Sep 2018 21:56:24 +0200 Subject: [PATCH 1/2] docs: #744 (inMemory statics) --- docs-src/in-memory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-src/in-memory.md b/docs-src/in-memory.md index 1bb09751f33..0e1a5b50d3e 100644 --- a/docs-src/in-memory.md +++ b/docs-src/in-memory.md @@ -1,6 +1,6 @@ # InMemory Collections -When you do a heavy amount of operations on a `RxCollection`, you might want to optimize this by using the in-memory-replication of the collection. The in-memory-replication behaves equal to the original collection but is stored in the Memory of your computer instead of the hard drive +When you do a heavy amount of operations on a `RxCollection`, you might want to optimize this by using the in-memory-replication of the collection. The in-memory-replication behaves equal to the original collection but is stored in the Memory of your computer instead of the hard drive. It inherits the `statics` of the original collection, but not its hooks -so you should register them separately in the case you'd want them to apply. ## Pros: From ee6a9ff27c2a5bd0a51e750f9e118c495178fbad Mon Sep 17 00:00:00 2001 From: Rafa Mel Date: Fri, 14 Sep 2018 21:56:49 +0200 Subject: [PATCH 2/2] docs: #763 (replicationState.active$) --- docs-src/replication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-src/replication.md b/docs-src/replication.md index e2648fff5e9..c524f98fa93 100644 --- a/docs-src/replication.md +++ b/docs-src/replication.md @@ -53,7 +53,7 @@ replicationState.denied$.subscribe(docData => console.dir(docData)); ``` ### active$ -Emits `true` or `false` depending if the replication is running. For example if you sync with a remote server and the connection dies, this is `false` until the connection can be reestablished. +Emits `true` or `false` depending if the replication is transmitting data. A `false` value does not imply the connection has died. ```js replicationState.active$.subscribe(active => console.dir(active));