Forrest logo
back to the turbo tool

turbo:tldr:8095d

turbo: Run a task in parallel across packages.
$ turbo run ${task_name} --parallel --no-cache
try on your machine

This command is running a task using the turbo command-line tool with certain options.

  • ${task_name} is a placeholder that should be replaced with the actual name of the task to be executed.

Options:

  • --parallel: This option instructs turbo to run the task in parallel. This means that it may utilize multiple CPU cores or concurrent processes to speed up the execution, if possible.

  • --no-cache: This option tells turbo not to use any previously cached results for the task. By default, turbo may store the results of a task in a cache, allowing subsequent runs of the same task to be faster by reusing the cached results. However, using --no-cache ensures that the task will always be executed from scratch, regardless of any cached results.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the turbo tool