From 364bd3841bcf792dcf749e46a486a215e8e77358 Mon Sep 17 00:00:00 2001 From: vladopajic Date: Tue, 11 Oct 2022 15:26:58 +0200 Subject: [PATCH] add goactor (#4453) --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cdc55e44..602e0469 100644 --- a/README.md +++ b/README.md @@ -1198,6 +1198,7 @@ _Tools for managing and working with 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-actor](https://github.com/vladopajic/go-actor) - A tiny library for writing concurrent programs using actor model. - [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.