CenterEdge / Yardarm

OpenAPI 3 SDK Generator for C#
Apache License 2.0
46 stars 6 forks source link

Run OpenApiSyntaxNodeEnrichers in parallel #251

Closed brantburnett closed 1 month ago

brantburnett commented 1 month ago

Motivation

Significantly improves performance by using multiple cores for one of the major enrichment steps.

Modifications

Loop through the syntax trees for each enricher in parallel, and perform a single operation to mutate the CSharpCompilation after each enricher is complete.

brantburnett commented 1 month ago

/merge