You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-16Lines changed: 0 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,22 +152,6 @@ private:
152
152
153
153
The construction of a binary fuse filter is fast but it needs a fair amount of temporary memory: plan for about 24 bytes of memory per set entry. It is possible to construct a binary fuse filter with almost no temporary memory, but the construction is then somewhat slower.
154
154
155
-
## Persistent usage
156
-
157
-
The data structure of a `binary_fuse8_t` instance quite simple. Thus you can easily save it to disk or memory-map it. E.g., we have
158
-
159
-
```C
160
-
typedefstruct binary_fuse8_s {
161
-
uint64_t Seed;
162
-
uint32_t SegmentLength;
163
-
uint32_t SegmentLengthMask;
164
-
uint32_t SegmentCount;
165
-
uint32_t SegmentCountLength;
166
-
uint32_t ArrayLength;
167
-
uint8_t *Fingerprints; // points to ArrayLength bytes
0 commit comments