From 733425911359fab92fd8503bdd53082e319695f8 Mon Sep 17 00:00:00 2001 From: Abdulla Abdurakhmanov Date: Sat, 7 Oct 2023 18:27:07 +0200 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ad60a75..4789cbf 100644 --- a/README.md +++ b/README.md @@ -611,11 +611,11 @@ The cache will be used for the following operations: - Partial support for querying documents in a collection: - Filtering; - Ordering; + - Paging/Cursors; (Caching other operations may be extended in the future). - The library provides two implementations of the cache: - In-memory cache, implemented using [moka cache library](https://github.com/moka-rs/moka); - Persistent cache, implemented using [redb](https://github.com/cberner/redb) and protobuf; @@ -635,6 +635,7 @@ Caching supports different init/load modes: Update cache is done in the following cases: - When you read a document through a cache by ID and it is not found in the cache, it will be loaded from Firestore and cached; - Firestore listener will update the cache when it receives a notification about the document change (externally or from your app); +- Using Preloads at the startup time; ### Usage