use map not filter for concurrency
on a machine with 32 threads, map is 6 times faster, due to no locking, compared to filter
Please register or sign in to comment
on a machine with 32 threads, map is 6 times faster, due to no locking, compared to filter