# LMAX-Exchange/disruptor

High Performance Inter-Thread Messaging Library

Repository: https://github.com/LMAX-Exchange/disruptor
Canonical: https://ross.abutalabs.com/products/disruptor
Homepage: http://lmax-exchange.github.io/disruptor/
Language: Java
License: Apache-2.0
License Family: permissive
Topics: disruptor, java, concurrency
Last push: 2025-04-02T13:03:33+00:00

## Health v2 (maintenance only)
Score: 29/100 (v2, computed 2026-09-02T17:46:02.011165+00:00)
- activity 14, release rhythm 8, longevity 100
- inputs: {"age_days": 5094, "days_push": 518, "days_rel": null, "gap_med": null, "n_releases_24m": 0}
- flags: no_readme
- formula: round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10)

## Adoption (not part of the score)
Stars 18451, forks 3971 (observed 2026-08-28T04:11:26.676803+00:00)

## What it is
LMAX Disruptor is a high-performance, lock-free inter-thread messaging library for the JVM built around a ring buffer with 'mechanical sympathy' for hardware. It provides extremely low-latency, high-throughput message passing between threads.

## Use cases
- pass messages between threads with minimal latency
- replace blocking queues in high-throughput pipelines
- build low-latency trading or event processing systems
- implement producer-consumer pipelines in Java
- reduce lock contention in concurrent applications

## When to choose
- you need very low latency and high throughput for inter-thread communication on the JVM
- your bottleneck is queue-based message passing between processing stages
- you can restructure your pipeline around the ring buffer pattern

## When to avoid
- you need simple distributed or cross-process messaging
- your workload is low-volume and standard queues suffice
- you cannot adapt your architecture to the disruptor pattern

## Facets
- artifact type: library
- maturity: stable
- function: concurrency, message-queue
- domain: developer-tools, performance
- platform: jvm
- tags: ring-buffer, lock-free, low-latency, inter-thread-messaging

## Member repositories
- LMAX-Exchange/disruptor (main) score 29

## Provenance
- Observed fields: from GitHub, fetched 2026-08-28T04:11:26.676803+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-29T17:02:02.633600+00:00, confidence not recorded.
  - homepage: http://lmax-exchange.github.io/disruptor/ (fetched 2026-08-29T07:59:39.366717+00:00, sha 1ef4cb55c473)
- Data as of 2026-08-30T08:39:29.467469+00:00.
