From 5ce74d5aa0ee0cea753f4909d37d398e058b40dc Mon Sep 17 00:00:00 2001 From: destel Date: Sun, 21 Apr 2024 01:50:09 +0300 Subject: [PATCH] Add rill --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f538797e..986e8a11 100644 --- a/README.md +++ b/README.md @@ -1293,6 +1293,7 @@ _Tools for managing and working with Goroutines._ - [pond](https://github.com/alitto/pond) - Minimalistic and High-performance goroutine worker pool written in Go. - [pool](https://github.com/go-playground/pool) - Limited consumer goroutine or unlimited goroutine pool for easier goroutine handling and cancellation. - [queue](https://github.com/AnikHasibul/queue) - Gives you a `sync.WaitGroup` like queue group accessibility. Helps you to throttle and limit goroutines, wait for the end of the all goroutines and much more. +- [rill](https://github.com/destel/rill) - Go concurrency with channel transformations. No boilerplate, type safety, batching and error handling. - [routine](https://github.com/timandy/routine) - `routine` is a `ThreadLocal` for go library. It encapsulates and provides some easy-to-use, non-competitive, high-performance `goroutine` context access interfaces, which can help you access coroutine context information more gracefully. - [routine](https://github.com/x-mod/routine) - go routine control with context, support: Main, Go, Pool and some useful Executors. - [semaphore](https://github.com/kamilsk/semaphore) - Semaphore pattern implementation with timeout of lock/unlock operations based on channel and context.