The GitHub Actions job "Fory CI" on fory.git/json_byte_array_base64 has failed.
Run started by GitHub user ingokegel (triggered by ingokegel).

Head commit for run:
fa460bea141f0e294820b5c7e9ed6c60e0bb3278 / Ingo Kegel 
<[email protected]>
perf(json): speed up base64 decoding

Base64 decoding did a branch-heavy validation scan and then a second
pass that re-read every character with per-character escape handling and
a four-way branch per digit. On binary-heavy payloads this dominated the
deserialization time.

The validation now runs as a single table-driven scan, and the decode
pass uses the same digit table without re-checking escapes. Bodies with
escaped characters fall back to the previous validating two-pass path.

Report URL: https://github.com/apache/fory/actions/runs/33415255574

With regards,
GitHub Actions via GitBox


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to