1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-22 21:16:10 +03:00
go-patterns/concurrency/bounded_parallelism.md

7 lines
326 B
Markdown
Raw Normal View History

2016-09-04 20:36:54 +03:00
# 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).