You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/upgrade-guide-2.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,29 @@ In v1, instances of `$ref` were resolved in a second pass of the document to ens
23
23
24
24
[How does this change the behaviour of external references?]
25
25
26
+
### Results
27
+
28
+
The following benchmark results outline an overall 50% reduction in processing time for the document parsing as well as 35% reduction in memory allocation when parsing JSON.
29
+
For YAML, the results between the different versions of the library are similar (some of the optimizations being compensated by the additional features).
Any method which results in input/output access (memory, network, storage) is now Async and returns a `Task<Result>` to avoid any blocking calls an improve concurrency.
0 commit comments