Can several tasks using `ExecOperations` be execut...
# community-support
v
Can several tasks using
ExecOperations
be executed concurrently within a single project without
Worker
API? I think it can be implemented, however I wonder if there’s any point in wrapping
ExecOperations
calls with
Workers
v
If they are separate tasks and you have configuration cache enabled, it should work just fine. If you do not have configuration cache enabled, or multiple subtasks within one task, the worker api can run things in parallel that otherwise couldn't
👍 1
v
What I thought was even without configuration cache,
ExecOperations
might be executed in parallel as if they were wrapped with
WorkAction
v
I'd highly doubt it
Just that its an external process does not mean it can run in parallel to anything else
And without CC and Workaction, no two tasks of the same project will ever run in parallel