smarty/go-disruptor
A port of the LMAX Disruptor to the Go language. observed · 2026-08-28
Health v2 · maintenance only
69/100
- Activity 82
- Release rhythm 35
- Longevity 100
Flags: no_releases no_license
How is this computed?
round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-03. Adoption (stars, forks) is never an input.
- gap_med: n/a
- age_days: 4491
- days_rel: n/a
- days_push: 111
- n_releases_24m: 0
Adoption not part of the score
1492 stars · 222 forks observed · 2026-08-28
What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-30, confidence not recorded
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
library · maturity active
concurrency message-queue developer-tools performance microservices go cross-platform lmax-disruptor ring-buffer high-throughput lock-free garbage-free inter-goroutine-messaging
1 source
- readme: https://github.com/smarty/go-disruptor · fetched 2026-08-28 · aedbe59272b8
Member repositories
| Repository | Role | Health v2 |
|---|---|---|
| smarty/go-disruptor | main | 69 |
For agents
markdown · JSON · MCP: product_card(name="smarty/go-disruptor")
Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem