# gammazero/workerpool

Concurrency limiting goroutine pool

Repository: https://github.com/gammazero/workerpool
Canonical: https://ross.abutalabs.com/products/gammazero-workerpool
Language: Go
License: MIT
License Family: permissive
Topics: worker-pool, concurrency
Last push: 2026-08-21T08:57:28+00:00

## Health v2 (maintenance only)
Score: 89/100 (v2, computed 2026-09-03T02:20:16.233290+00:00)
- activity 98, release rhythm 70, longevity 100
- inputs: {"age_days": 3760, "days_push": 12, "days_rel": 200, "gap_med": 0, "n_releases_24m": 2}
- flags: none
- formula: round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10)

## Adoption (not part of the score)
Stars 1458, forks 150 (observed 2026-08-28T04:04:47.141780+00:00)

## What it is
A Go library providing a concurrency-limiting goroutine pool that caps the number of concurrently executing tasks while allowing unlimited task queuing without blocking submissions. It offers a simple Submit/StopWait API for parallel task execution.

## Use cases
- limit concurrent goroutines in go
- process tasks in parallel with bounded concurrency
- submit many jobs without blocking the caller
- worker pool for go tasks
- throttle parallel http requests in go
- run background jobs with fixed worker count

## When to choose
- you need non-blocking task submission with unlimited queueing
- you want a small, dependency-free Go worker pool
- you only need to limit concurrent execution, not queue size

## When to avoid
- you need backpressure that blocks when all workers are busy (use gammazero/workers instead)
- you need distributed workload processing or persistent job queues
- you need bounded queue size or task prioritization

## Facets
- artifact type: library
- maturity: stable
- function: concurrency
- domain: developer-tools
- platform: go, cross-platform
- tags: worker-pool, goroutine-pool, task-queue, concurrency-limiting, algorithms

## Member repositories
- gammazero/workerpool (main) score 89

## Provenance
- Observed fields: from GitHub, fetched 2026-08-28T04:04:47.141780+00:00.
- Health v2: computed from the inputs above; adoption is never an input.
- Inferred fields (summary, facets, guidance): AI-extracted, prompt v1, taxonomy v1, on 2026-08-30T04:35:30.267165+00:00, confidence not recorded.
  - readme: https://github.com/gammazero/workerpool (fetched 2026-08-28T04:04:47.141780+00:00, sha b22b656a71b5)
- Data as of 2026-08-30T08:39:29.467469+00:00.
