Open
Description
Optimization 4: Concurrent Multithreading - Parallel Processing
- We will use concurrency as each operation is independent of parallel searches. Except for the case of global maximum records. Since the code is concurrent - not all the maximums will be displayed. The reason is the global maximum may be reached in an adjacent thread. For example 27:111:9232 may be missed by 34177:187:1302532. Use of Thread local maximums will solve this.
https://github.com/ObrienlabsDev/performance/blob/main/README.md#optimization-4-concurrent-multithreading---parallel-processing