From 281d81e6f4e1e0a5f28d8e83ffe1e55e88b3c347 Mon Sep 17 00:00:00 2001 From: Max Chechel Date: Fri, 18 Jun 2021 16:51:25 +0300 Subject: [PATCH] Added hexdingest/execpool to the Goroutines category --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5e136fde..3971ab05 100644 --- a/README.md +++ b/README.md @@ -912,6 +912,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a * [concurrency-limiter](https://github.com/vivek-ng/concurrency-limiter) - Concurrency limiter with support for timeouts , dynamic priority and context cancellation of goroutines. * [conexec](https://github.com/ITcathyh/conexec) - A concurrent toolkit to help execute funcs concurrently in an efficient and safe way. It supports specifying the overall timeout to avoid blocking and uses goroutine pool to improve efficiency. * [cyclicbarrier](https://github.com/marusama/cyclicbarrier) - CyclicBarrier for golang. +* [execpool](https://github.com/hexdigest/execpool) - A pool built around exec.Cmd that spins up a given number of processes in advance and attaches stdin and stdout to them when needed. Very similar to FastCGI or Apache Prefork MPM but works for any command. * [go-floc](https://github.com/workanator/go-floc) - Orchestrate goroutines with ease. * [go-flow](https://github.com/kamildrazkiewicz/go-flow) - Control goroutines execution order. * [go-tools/multithreading](https://github.com/nikhilsaraf/go-tools) - Manage a pool of goroutines using this lightweight library with a simple API.