AndersTrier / reed-solomon-simd

Reed-Solomon GF(2^16) erasure coding with O(n log n) complexity
https://crates.io/crates/reed-solomon-simd
Other
20 stars 5 forks source link

How to process data using the streaming method #47

Closed nanakura closed 2 months ago

nanakura commented 2 months ago

How to use this crate to process large files like this https://github.com/klauspost/reedsolomon/blob/master/examples/stream-encoder.go

AndersTrier commented 2 months ago

Not implemented yet. As a workaround, how about splitting the large file up into smaller chunks that fit in RAM and process each chunk individually? Could that work for you?

nanakura commented 2 months ago

I will try