|
|
|
|
|
by Skinney
1771 days ago
|
|
For a CPU bound workload you’ll be better off using one «full» thread per cpu in a pool and submitting tasks to said pool. Then again, the same would be true in Go. Loom simply brings goroutines to the JVM. Go might perform better, but that can be due to many other things not specific to the concurrency implementation (like better memory utilization because not every struct is stored on the heap in Go) |
|