Releases: crushr3sist/blockframe-rs
Releases · crushr3sist/blockframe-rs
v1.0.3
Full Changelog: v1.0.2...v1.0.3
Change log:
- Removed mmap conditions and thresholds to enable default mmap for file read in tier 2 commits.
- previously mmap would be selected if a file was greater than 10mb,
use_mmapwould be checked within the segment loop constantly, even though use_mmap was a constant. - presence of conditional mmap meant doing variable sized buffer fills which would eventually lead to short reads and corruption of segments due to filling EOF segment with dummy data as the buffer would be statically sized for reusability.
- previously mmap would be selected if a file was greater than 10mb,
- Added padding to
generate_parity_segmented- the Reed-Solomon erasure coding is ran on SIMD instructions, meaning the data which is being processed on the specific lanes must be 64 bytes. Prior if 65 bytes were passed, the 1 left over bit wouldn't be filled into the SIMD vector which created undefined behaviour.
- added next multiple of 64 padding for exception chunks.
- Changed commit boundaries for tier 1 from 10mb to 25mb.
- Changed
sha256function name toblake3_hash_bytes
v1.0.2
Full Changelog: v1.0.1...v1.0.2
v1.0.1
Full Changelog: v0.3.0...v1.0.1
v1.0.0
What's Changed
- Document all functions with runnable rustdoc examples by @crushr3sist in #1
New Contributors
- @crushr3sist made their first contribution in #1
Full Changelog: https://github.com/crushr3sist/blockframe-rs/commits/v1.0.0