mirror of
https://github.com/tmrts/go-patterns.git
synced 2024-11-22 13:06:09 +03:00
7 lines
278 B
Markdown
7 lines
278 B
Markdown
|
# Parallelism Pattern
|
||
|
|
||
|
[Parallelism](https://blog.golang.org/pipelines#TOC_8.) 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](parallelism.go).
|