Ross ROSS = Recommend OSS · open-source software intelligence for agents

monoio-rs/monoio

Rust async runtime based on io-uring. observed · 2026-08-28

github.com/monoio-rs/monoio · Rust · Apache-2.0 (permissive) observed · 2026-08-28

Health v2 · maintenance only

65/100

  • Activity 93
  • Release rhythm 8
  • Longevity 100
How is this computed?

round(0.45*activity + 0.35*rhythm + 0.20*longevity); archived -> min(score, 10) — computed 2026-09-02. Adoption (stars, forks) is never an input.

  • gap_med: n/a
  • age_days: 1737
  • days_rel: n/a
  • days_push: 44
  • n_releases_24m: 0

Full methodology

Adoption not part of the score

5081 stars · 295 forks observed · 2026-08-28

What it is AI-extracted, prompt v1, taxonomy v1, 2026-08-29, confidence not recorded

Monoio is a thread-per-core asynchronous Rust runtime built on io_uring (with epoll/kqueue fallbacks), originally developed at ByteDance. Unlike Tokio-uring, it runs standalone rather than atop another runtime, and its thread-per-core model removes the need for Send/Sync bounds on tasks.

Use cases

  • build a high-performance network server in Rust
  • write a load balancer like NGINX with thread-per-core architecture
  • maximize throughput for io-bound socket workloads
  • avoid Send/Sync constraints on async tasks
  • use io_uring for native async I/O on Linux

When to choose

  • you are building io-bound network servers on Linux with kernel 5.6+
  • you want thread-per-core semantics and thread-local data without sharing across threads
  • you need better performance than Tokio for your specific server workloads

When to avoid

  • you need a general-purpose runtime with work-stealing and cross-thread task migration
  • you require broad ecosystem compatibility with Tokio-based crates
  • your target platform lacks io_uring and you need Windows support
  • you want to avoid nightly/unstable Rust features

Facets

library · maturity active

concurrency http-server networking developer-tools backend performance microservices rust async-runtime io-uring thread-per-core epoll kqueue linux macos

1 source

Member repositories

RepositoryRoleHealth v2
monoio-rs/monoiomain65

For agents

markdown · JSON · MCP: product_card(name="monoio-rs/monoio")

Data as of 2026-08-30T08:39:29.467469+00:00 · Report a problem