1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-02-19 22:03:15 +03:00
go-patterns/concurrency/bounded_parallelism.md

7 lines
332 B
Markdown
Raw Normal View History

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