diff --git a/concurrency/bounded_parallelism.md b/concurrency/bounded_parallelism.md new file mode 100644 index 0000000..8f1429c --- /dev/null +++ b/concurrency/bounded_parallelism.md @@ -0,0 +1,7 @@ +# 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). \ No newline at end of file