mirror of
https://github.com/tmrts/go-patterns.git
synced 2024-11-22 04:56:09 +03:00
7 lines
326 B
Markdown
7 lines
326 B
Markdown
# Bounded Parallelism Pattern
|
|
|
|
[Bounded parallelism](https://blog.golang.org/pipelines#TOC_9.) is similar to [parallelism](parallelism.md), but allows limits to be placed on allocation.
|
|
|
|
# Implementation and Example
|
|
|
|
An example showing implementation and usage can be found in [bounded_parallelism.go](bounded_parallelism.go). |