35个版本

0.6.4 2024年4月21日
0.6.3 2024年1月31日
0.6.2 2023年9月17日
0.6.0 2023年4月9日
0.2.0 2019年6月5日

#60异步

Download history 15920/week @ 2024-05-02 14099/week @ 2024-05-09 15361/week @ 2024-05-16 14027/week @ 2024-05-23 17402/week @ 2024-05-30 17202/week @ 2024-06-06 16722/week @ 2024-06-13 16774/week @ 2024-06-20 16305/week @ 2024-06-27 17122/week @ 2024-07-04 20452/week @ 2024-07-11 20503/week @ 2024-07-18 16197/week @ 2024-07-25 15730/week @ 2024-08-01 16926/week @ 2024-08-08 16415/week @ 2024-08-15

68,960 每月下载量
用于 98 个crate(43个直接使用)

MIT/Apache

250KB
6K SLoC

Linux IO Uring

github actions crates license license docs.rs

Rust的底层 io_uring 用户空间接口。

用法

要使用 io-uring crate,首先在您的 Cargo.toml 中添加以下内容

[dependencies]
io-uring = "0.6"

接下来,我们可以开始使用 io-uring crate。以下是用 Read 对文件进行快速介绍的示例。

use io_uring::{opcode, types, IoUring};
use std::os::unix::io::AsRawFd;
use std::{fs, io};

fn main() -> io::Result<()> {
    let mut ring = IoUring::new(8)?;

    let fd = fs::File::open("README.md")?;
    let mut buf = vec![0; 1024];

    let read_e = opcode::Read::new(types::Fd(fd.as_raw_fd()), buf.as_mut_ptr(), buf.len() as _)
        .build()
        .user_data(0x42);

    // Note that the developer needs to ensure
    // that the entry pushed into submission queue is valid (e.g. fd, buffer).
    unsafe {
        ring.submission()
            .push(&read_e)
            .expect("submission queue is full");
    }

    ring.submit_and_wait(1)?;

    let cqe = ring.completion().next().expect("completion queue is empty");

    assert_eq!(cqe.user_data(), 0x42);
    assert!(cqe.result() >= 0, "read error: {}", cqe.result());

    Ok(())
}

请注意,操作码 Read 仅在内核5.6及以上版本中可用。如果您使用低于5.6的内核,此示例将失败。

测试和基准测试

您可以使用以下命令运行库的测试和基准测试。

$ cargo run --package io-uring-test
$ cargo bench --package io-uring-bench

许可证

此项目根据您的选择,受以下任一许可证的许可:

贡献

除非您明确说明,否则根据Apache-2.0许可证定义的,您有意提交的任何贡献,都应按上述方式双重许可,不附加任何额外的条款或条件。

依赖项

~74–320KB