indexmap_store 0.1.0

Mutable, persistent key-value store backed by an IndexMap with an append-only log.
Documentation
1
2
3
4
5
6
7
8
9
10
11
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -333,7 +333,7 @@
         Ok(())
     }
 
-    #[inline]
+    #[inline(always)]
     fn flush_scratch(&mut self) -> io::Result<()> {
         // Callers reserve LEN_BYTES at the front of `scratch`; fill the length
         // in place so the length-prefix and payload land in a single write.