1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-22 13:06:09 +03:00
go-patterns/concurrency/bounded_parallelism.md
2016-09-04 13:36:54 -04:00

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).