AdRoll / rebar3_hank

The Erlang Dead Code Cleaner
MIT License
68 stars 9 forks source link

Consider Parallel Parsing #100

Closed elbrujohalcon closed 3 years ago

elbrujohalcon commented 3 years ago

Describe the solution you'd like

We are already evaluating the rules in parallel, but the largest chunk of time consumed by Hank is spent parsing the modules. It would be great if we could parallelize that part and either parse each module in a different process or have multiple workers queueing up the parsing.

elbrujohalcon commented 3 years ago

Thanks, @lauramcastro for this idea.