Skip to content

Commit e75ad54

Browse files
committed
rewording.
1 parent ee6a5c7 commit e75ad54

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ efficient memory copy operations.
6161
6262
The packed format avoids storing zero bytes and relies on a bitset to locate them, so it
6363
should be expected to be somewhat slower. The packed format might be smaller or larger.
64-
It might be beneficial when using 16-bit binary fuse filters.
64+
It might be beneficial when using 16-bit binary fuse filters for users who need to preserve
65+
every bytes, and who do not care about the computational overhead.
6566
When in doubt, prefer the regular (unpacked) format.
6667
6768
The two formats use slightly different APIs.
@@ -84,7 +85,7 @@ To serialize and deserialize in packed format, use the `_pack_bytes()`,
8485
argument for the buffer length. `_pack()` can be used with a buffer of arbitrary
8586
size, it returns the used space if serialization fit into the buffer or 0
8687
otherwise. Note that the packed format will be slower and may not save space
87-
although it is likely beneficial when using the 16-bit binary fuse filters.
88+
although it is likely smaller on disk when using the 16-bit binary fuse filters.
8889

8990
For example:
9091

0 commit comments

Comments
 (0)