rbt icon indicating copy to clipboard operation
rbt copied to clipboard

walk the build graph in parallel

Open BrianHicks opened this issue 3 years ago • 0 comments

With https://github.com/roc-lang/rbt/pull/69, we have an actual build graph. Next step: walk it in parallel!

Dependencies:

  • https://github.com/roc-lang/rbt/pull/69 for the parallel graph
  • https://github.com/roc-lang/rbt/issues/72 for a data store that can be accessed in parallel

We probably don't want to do this in an async context, by the way. The async_std implementation of process is unstable, and we're going to want to avoid spawning all the build tasks at once!

BrianHicks avatar Sep 30 '22 21:09 BrianHicks