Skip to content

Commit ee6a5c7

Browse files
committed
changing the wording.
1 parent cb64259 commit ee6a5c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ 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.
6465
When in doubt, prefer the regular (unpacked) format.
6566
6667
The two formats use slightly different APIs.
@@ -82,7 +83,8 @@ To serialize and deserialize in packed format, use the `_pack_bytes()`,
8283
`_pack()` and `_unpack()` functions. The latter two have an additional `size_t`
8384
argument for the buffer length. `_pack()` can be used with a buffer of arbitrary
8485
size, it returns the used space if serialization fit into the buffer or 0
85-
otherwise. Note that the packed format will be slower and may not save space.
86+
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.
8688

8789
For example:
8890

0 commit comments

Comments
 (0)