ibrahimcesar/async-inspect

Add Monoio runtime support

Open

#39 创建于 2025年11月29日

在 GitHub 查看
 (0 评论) (0 反应) (0 负责人)Rust (1 fork)auto 404
enhancementgood first issuehelp wantedruntime

仓库指标

Star
 (5 star)
PR 合并指标
 (PR 指标待抓取)

描述

Add support for the Monoio async runtime (thread-per-core, io_uring).

Description

Monoio is ByteDance's thread-per-core async runtime optimized for network applications.

Technical Context

  • io_uring-based runtime
  • Thread-per-core design
  • Optimized for network I/O

Resources

Implementation Hints

  • Look at existing runtime implementations in src/runtime/
  • Create src/runtime/monoio.rs
  • Add feature flag and optional dependency

Acceptance Criteria

  • spawn_tracked function for Monoio
  • InspectExt trait implementation
  • Example in examples/ directory
  • Feature flag: monoio-runtime

贡献者指南