aaubry / YamlDotNet

YamlDotNet is a .NET library for YAML
MIT License
2.48k stars 466 forks source link

Optimize YamlScalarNode.Load and YamlMappingNode.Load #927

Open lahma opened 1 month ago

lahma commented 1 month ago

Improving scalar loading performance a bit as it's done a lot for common files. Check for "null" marker faster and don't do try-catch in a loop. I fixed the saltern example YAML file for easier testing.

The OrderedDictionary change looks large, but it seems that it has been stored in Git with wrong newlines and always pops up as modified otherwise. If you check ignore whitespace in PR view that should help.

YamlDotNet.Benchmark.YamlStreamBenchmark

Diff Method Toolchain Mean Error
Old LoadLarge Default 61.27 ms 0.538 ms
New Default 55.86 ms (-9%) 0.891 ms