ironcalc / IronCalc

Main engine of the IronCalc ecosystem
Apache License 2.0
48 stars 2 forks source link

UPDATE: Serialize/Deserialize with bitcode #31

Closed nhatcher closed 2 months ago

codecov[bot] commented 2 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 91.31%. Comparing base (4890279) to head (d153827).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #31 +/- ## ========================================== + Coverage 91.29% 91.31% +0.01% ========================================== Files 166 166 Lines 29398 29420 +22 ========================================== + Hits 26840 26865 +25 + Misses 2558 2555 -3 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

fosdickio commented 2 months ago

For anyone reading this later, bitcode is a binary encoder/decoder that is significantly faster than the approach using serde_json that was previously being done. See these Rust serialization benchmarks for a more in-depth comparison.