Skip to content

Commit a9c951d

Browse files
authored
Update README.md
1 parent 0acda5c commit a9c951d

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

README.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -152,22 +152,6 @@ private:
152152

153153
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.
154154

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-
typedef struct 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
168-
} binary_fuse8_t;
169-
```
170-
171155
## Running tests and benchmarks
172156

173157
To run tests: `make test`.

0 commit comments

Comments
 (0)