`ListK.parTraverse` will give me some (default) co...
# arrow
b
ListK.parTraverse
will give me some (default) concurrency, right?
j
I'd also like to know that. And will this always go on seperate threads or does that depend on context etc?
b
I think separate threads is preferred
and the answer to that question based on my testing is "yes" 😄
looks like tasks were allocated to a thread pool of 15-16 threads
j
I had some code that needed to run in seperate threads (race-condition testing in within state-machine tests) and it didn't do that for every single task. If it just goes on a pool that means it can run on seperate threads, but not that it has to. I guess my case is a bit special tho 🙂