1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-30 00:46:01 +03:00
go-patterns/concurrency/bounded_parallelism.md

7 lines
332 B
Markdown
Raw Normal View History

2020-08-18 04:22:50 +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
2016-09-04 20:36:54 +03:00
An example showing implementation and usage can be found in [bounded_parallelism.go](bounded_parallelism.go).