# smarty/go-disruptor

A port of the LMAX Disruptor to the Go language.

Repository: https://github.com/smarty/go-disruptor
Canonical: https://ross.abutalabs.com/products/go-disruptor
Language: Go
License: NOASSERTION
License Family: other
Last push: 2026-05-14T23:33:53+00:00

## Health v2 (maintenance only)
Score: 69/100 (v2, computed 2026-09-03T02:20:16.233290+00:00)
- activity 82, release rhythm 35, longevity 100
- inputs: {"age_days": 4491, "days_push": 111, "days_rel": null, "gap_med": null, "n_releases_24m": 0}
- flags: no_releases, no_license
- formula: round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10)

## Adoption (not part of the score)
Stars 1492, forks 222 (observed 2026-08-28T04:04:52.720037+00:00)

## What it is
A Go port of the LMAX Disruptor, a high-performance inter-thread/goroutine messaging library built on a pre-allocated ring buffer. It achieves hundreds of millions of messages per second between goroutines by avoiding locks and garbage collection pressure, far outperforming Go channels.

## Use cases
- pass messages between goroutines at maximum throughput
- replace slow Go channels in hot paths
- build low-latency event processing pipelines
- avoid GC pauses from message allocation
- fan out messages to consumer groups in sequence

## When to choose
- you need an order of magnitude more throughput than channels provide
- consistent, predictable message processing latency matters
- you can structure consumers as handler groups on a ring buffer

## When to avoid
- your message rates are modest and channels suffice
- you need network-distributed messaging rather than in-process
- you want a simple, familiar API over raw performance

## Facets
- artifact type: library
- maturity: active
- function: concurrency, message-queue
- domain: developer-tools, performance, microservices
- platform: go, cross-platform
- tags: lmax-disruptor, ring-buffer, high-throughput, lock-free, garbage-free, inter-goroutine-messaging

## Member repositories
- smarty/go-disruptor (main) score 69

## Provenance
- Observed fields: from GitHub, fetched 2026-08-28T04:04:52.720037+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:33:31.715114+00:00, confidence not recorded.
  - readme: https://github.com/smarty/go-disruptor (fetched 2026-08-28T04:04:52.720037+00:00, sha aedbe59272b8)
- Data as of 2026-08-30T08:39:29.467469+00:00.
