Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eteissonniere/minions
A library to easily use worker pools in golang
https://github.com/eteissonniere/minions
Last synced: 5 days ago
JSON representation
A library to easily use worker pools in golang
- Host: GitHub
- URL: https://github.com/eteissonniere/minions
- Owner: ETeissonniere
- Created: 2020-02-03T19:25:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-03T21:25:00.000Z (almost 5 years ago)
- Last Synced: 2024-06-20T06:36:04.921Z (5 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minions
A golang library to help you manage worker pools
# Usage
```go
package mainimport (
"log"
"time""github.com/eteissonniere/minions"
)func main() {
log.Println("starting")nbMinions := 10
pool := minions.Hire(nbMinions)for i := 0; i