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
* feat: FORMAT_VERSION=1, adds crc32 check value to format
Implementation is backwards compatible with format version 0 though
the format is different.
* docs: describe format version 1
* test: show validationerror is raised if bits corrupted
* feat: allow disabling crc checks
@@ -93,7 +98,7 @@ The index can be consulted by conducting an Eytzinger binary search over the lab
93
98
94
99
### Data Region
95
100
96
-
The data objects are serialized to bytes and compressed individually if the header indicates they should be. They are then concatenated in the same order the index specifies.
101
+
The data objects are serialized to bytes and compressed individually if the header indicates they should be. They are then concatenated in the same order the index specifies. The last four bytes are a crc32c check value that was added in format version 1.
0 commit comments