1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-13 05:50:57 +00:00
go-patterns/concurrency/parallelism.md
2020-08-18 09:22:50 +08:00

284 B

Parallelism Pattern

Parallelism allows multiple "jobs" or tasks to be run concurrently and asynchronously.

Implementation and Example

An example showing implementation and usage can be found in parallelism.go.