diff options
Diffstat (limited to 'log_db/src/common.rs')
| -rw-r--r-- | log_db/src/common.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/log_db/src/common.rs b/log_db/src/common.rs index 4f5751d..8bdcd9a 100644 --- a/log_db/src/common.rs +++ b/log_db/src/common.rs @@ -216,7 +216,7 @@ impl MetadataHeader { #[derive(Debug, Clone, Eq, PartialEq)] pub enum ReadConsistency { /// Reads by client A are guaranteed to see writes by themselves and any writes by other clients B - /// that were done before last index refresh. + /// that were done before last index refresh. You must call `refresh_indexes()` manually to refresh indexes. Eventual, /// Reads by client A are guaranteed to see all writes. This is slower: all reads must first /// refresh indexes. |
