awesome-repositories.com
Blog
MCP
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectMCP serverAboutHow we rankPress
LegalPrivacyTerms
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Back to jeffail/tunny

Open-source alternatives to Tunny

30 open-source projects similar to jeffail/tunny, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Tunny alternative.

  • panjf2000/antspanjf2000 avatar

    panjf2000/ants

    14,436View on GitHub↗

    Ants is a goroutine pool library for Go that functions as a concurrent task orchestrator and resource consumption limiter. Its primary purpose is to manage and reuse a pool of goroutines to limit concurrency and reduce the memory allocation overhead associated with frequent thread creation. The system provides a runtime worker manager capable of adjusting pool capacity dynamically to respond to fluctuating workloads. To maintain stability, it includes panic recovery mechanisms that intercept runtime failures within worker threads to prevent a single failing task from crashing the entire appli

    Goantsgogoroutine
    View on GitHub↗14,436
  • sourcegraph/concsourcegraph avatar

    sourcegraph/conc

    10,307View on GitHub↗

    conc is a Go concurrency library and structured concurrency framework providing primitives for managing parallel tasks, mapping slices, and collecting results. It implements a system for spawning scoped tasks to ensure all child processes complete before their parent exits. The library includes a goroutine pool manager to limit active concurrent processes and a panic-safe task runner that catches panics in goroutines and propagates stack traces to the parent. It also provides a concurrent map-reduce tool for transforming data slices and processing streams in parallel while maintaining the ori

    Goconcurrencygogolang
    View on GitHub↗10,307
  • alitto/pondalitto avatar

    alitto/pond

    2,158View on GitHub↗

    🔘 Minimalistic and High-performance goroutine worker pool written in Go

    Goconcurrencygogolang
    View on GitHub↗2,158
  • gammazero/workerpoolgammazero avatar

    gammazero/workerpool

    1,453View on GitHub↗

    Concurrency limiting goroutine pool

    Goconcurrencyworker-pool
    View on GitHub↗1,453

AI search

Explore more awesome repositories

Describe what you need in plain English — the AI ranks thousands of curated open-source projects by relevance.

Find more with AI search
  • sindresorhus/p-queuesindresorhus avatar

    sindresorhus/p-queue

    4,217View on GitHub↗

    p-queue is a JavaScript promise queue and concurrent task scheduler designed to limit the number of active asynchronous operations. It serves as an asynchronous rate limiter and promise lifecycle manager to prevent resource exhaustion. The project distinguishes itself through priority-based task scheduling and token-bucket rate limiting to control execution frequency. It integrates with abort signals for task cancellation and provides mechanisms to pause, resume, and clear pending operations. The tool covers broader traffic management capabilities including operation timeouts and concurrency

    TypeScript
    View on GitHub↗4,217
  • rvagg/node-worker-farmrvagg avatar

    rvagg/node-worker-farm

    1,739View on GitHub↗

    Node-worker-farm is a framework for distributing intensive computational tasks across a managed pool of background processes. By offloading heavy operations to independent child processes, it enables concurrent execution and prevents the main event loop from becoming blocked, allowing applications to maximize CPU utilization across available processor cores. The library distinguishes itself through a proxy-based interface that maps local function calls directly to exported methods within remote worker modules. This abstraction simplifies the distribution of work by treating background tasks a

    JavaScript
    View on GitHub↗1,739
  • jhalterman/failsafejhalterman avatar

    jhalterman/failsafe

    4,307View on GitHub↗

    Failsafe is a JVM resilience library providing a collection of fault tolerance patterns for Java applications. It functions as an asynchronous execution wrapper that runs tasks in the background and returns futures to prevent thread blocking. The library allows for the composition of resilience policies, enabling multiple patterns to be stacked into a sequential pipeline. It includes specific implementations for circuit breaking to prevent system overload, rate limiting to control traffic flow, and a framework for managing retries and fallbacks. Capability areas cover traffic management thro

    Java
    View on GitHub↗4,307
  • sodiray/radashsodiray avatar

    sodiray/radash

    4,845View on GitHub↗

    Radash is a TypeScript functional utility library designed for data transformation, validation, and workflow management. It provides a collection of typed helper functions to manipulate arrays, objects, and strings. The project features an asynchronous workflow toolkit for managing promises, retries, and concurrency limits, alongside a suite of boolean validators for verifying primitive types, objects, and promises. It also implements functional programming patterns such as function composition, partial application, and error-first response patterns. The library covers a broad surface of cap

    TypeScriptfunctionshacktoberfestjavascript
    View on GitHub↗4,845
  • reactivex/rxgoReactiveX avatar

    ReactiveX/RxGo

    5,091View on GitHub↗

    RxGo is a functional reactive programming library and an implementation of ReactiveX for the Go language. It serves as an asynchronous stream processing toolkit designed to coordinate event-based programs and data flows using the observable pattern. The library enables the construction of asynchronous processing pipelines that transform, filter, and combine event sequences. It distinguishes itself through the use of functional operators to compose these pipelines and provides mechanisms for managing concurrent execution. The toolkit covers a broad range of stream orchestration capabilities,

    Goasyncasynchronousconcurrency
    View on GitHub↗5,091
  • marusama/cyclicbarriermarusama avatar

    marusama/cyclicbarrier

    158View on GitHub↗

    CyclicBarrier golang implementation

    Gobarriercycliccyclicbarrier
    View on GitHub↗158
  • pieterclaerhout/go-waitgrouppieterclaerhout avatar

    pieterclaerhout/go-waitgroup

    49View on GitHub↗

    A sync.WaitGroup with error handling and concurrency control

    Goconcurrencygolanggoroutine
    View on GitHub↗49
  • itcathyh/conexecITcathyh avatar

    ITcathyh/conexec

    17View on GitHub↗

    A concurrent toolkit to help execute funcs concurrently in an efficient and safe way. It supports specifying the overall timeout to avoid blocking.

    Gogogolanggoroutine
    View on GitHub↗17
  • kamilsk/semaphorekamilsk avatar

    kamilsk/semaphore

    101View on GitHub↗

    🚦 Semaphore pattern implementation with timeout of lock/unlock operations.

    Goawesome-gogogolang
    View on GitHub↗101
  • ddelizia/channelifyddelizia avatar

    ddelizia/channelify

    34View on GitHub↗

    Make functions return a channel for parallel processing via go routines.

    Go
    View on GitHub↗34
  • marusama/semaphoremarusama avatar

    marusama/semaphore

    178View on GitHub↗

    Fast resizable golang semaphore primitive

    Gogogolangmutex
    View on GitHub↗178
  • rafaeljesus/parallel-fnrafaeljesus avatar

    rafaeljesus/parallel-fn

    37View on GitHub↗

    Run functions in parallel :comet:

    Goconcurrencygogoroutines
    View on GitHub↗37
  • dirkaholic/kyoodirkaholic avatar

    dirkaholic/kyoo

    51View on GitHub↗

    Unlimited job queue for go, using a pool of concurrent workers processing the job queue entries

    Gogogolanggolang-library
    View on GitHub↗51
  • arunsworld/nurseryarunsworld avatar

    arunsworld/nursery

    70View on GitHub↗

    Structured Concurrency in Go

    Goconcurrencygolanggolang-library
    View on GitHub↗70
  • kyuff/anchorkyuff avatar

    kyuff/anchor

    3View on GitHub↗

    Library to manage application lifetime in a Go microservice architecture

    Gogogolanglibrary
    View on GitHub↗3
  • nikhilsaraf/go-toolsnikhilsaraf avatar

    nikhilsaraf/go-tools

    17View on GitHub↗

    A collection of tools for Golang

    Go
    View on GitHub↗17
  • ashvinbambhaniya/autopoolAshvinBambhaniya avatar

    AshvinBambhaniya/autopool

    4View on GitHub↗

    Zero-config, auto-scaling worker pool for Go with priority-aware scheduling, adaptive resource management, and per-task retry logic.

    Goasyncauto-scalingbackpressure
    View on GitHub↗4
  • destel/rilldestel avatar

    destel/rill

    1,815View on GitHub↗

    Go toolkit for clean, composable, channel-based concurrency

    Gochannelsconcurrencyfunctional-programming
    View on GitHub↗1,815
  • loveleshsharma/gohiveloveleshsharma avatar

    loveleshsharma/gohive

    54View on GitHub↗

    🐝 A Highly Performant and easy to use goroutine pool for Go

    Goasyncasynchronous-tasksconcurren
    View on GitHub↗54
  • ivpusic/grpoolivpusic avatar

    ivpusic/grpool

    736View on GitHub↗

    Lightweight Goroutine pool

    Gogolanggoroutinepool
    View on GitHub↗736
  • kamildrazkiewicz/go-flowkamildrazkiewicz avatar

    kamildrazkiewicz/go-flow

    221View on GitHub↗

    Simply way to control goroutines execution order based on dependencies

    Goconcurencygogoflow
    View on GitHub↗221
  • duanckham/handsduanckham avatar

    duanckham/hands

    10View on GitHub↗

    Hands is a process controller used to control the execution and return strategies of multiple goroutines.

    Go
    View on GitHub↗10
  • hexdigest/execpoolhexdigest avatar

    hexdigest/execpool

    29View on GitHub↗

    A pool that spins up a given number of processes in advance and attaches stdin and stdout when needed. Very similar to FastCGI but works for any command.

    Go
    View on GitHub↗29
  • kamilsk/breakerkamilsk avatar

    kamilsk/breaker

    21View on GitHub↗

    🚧 Flexible mechanism to make execution flow interruptible.

    hacktoberfest
    View on GitHub↗21
  • nar10z/go-accumulatornar10z avatar

    nar10z/go-accumulator

    10View on GitHub↗

    Solution for accumulation of events and their subsequent processing.

    Goaccumulatorbatchgo
    View on GitHub↗10
  • benmanns/goworkerbenmanns avatar

    benmanns/goworker

    2,847View on GitHub↗

    goworker is a Go-based background worker that runs 10 to 100,000* times faster than Ruby-based workers.

    Go
    View on GitHub↗2,847