Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

README

        

# Minions

A golang library to help you manage worker pools

# Usage

```go
package main

import (
"log"
"time"

"github.com/eteissonniere/minions"
)

func main() {
log.Println("starting")

nbMinions := 10
pool := minions.Hire(nbMinions)

for i := 0; i