#file-io #io-uring #async-io #io #io-operations #async #fs

uring-fs

使用io-uring实现真正异步的文件操作。支持任何异步运行时。仅限Linux。

3个版本 (1个稳定版)

1.4.0 2024年1月15日
1.3.0 2024年1月14日
1.2.0 2024年1月14日
0.2.0 2023年12月10日
0.1.0 2023年12月10日

#712 in 异步

每月下载 38

MIT 协议

20KB
312

uring-fs

uring-fs 是一个库,允许您在Rust中使用async-await安全地读取文件,无需线程池。它使用 io_uring

特性

  • 使用io-uring实现真正异步和安全的文件操作。
  • 与任何异步运行时兼容。
  • 支持:打开、状态、读取、写入。
  • 依赖于 io_uringlibc。因此,它不支持不支持这些平台的任何平台。有关更多信息,请参阅 IoUring 文档。

示例

let io = IoUring::new()?; // create a new io-uring context
let mut file: fs::File = io.open("src/foo.txt", Flags::RDONLY).await?;
//            ^^^^ you could also use File::open or OpenOptions
let info = io.stat("src/foo.txt").await?;
// there is also read_all, which doesn't require querying the file size
// using stat, however this is a bit more efficient since we only allocate the data buffer once
let content = io.read(&file, info.size()).await?;
println!("we read {} bytes", content.len());
// btw you can also seek the file using io::Seek
file.seek(SeekFrom::Current(-10));

注意

此库将启动一个回收线程,等待io-uring完成并通知适当的future。然而,与使用线程池相比,这要轻量得多。

此crate没有像 rio 那样的稳健性问题,但它不如它强大,也不提供许多细粒度控制。如果您想使用 rio,请记住,在某些时候,必须启用 no_metrics 功能!否则,将有一个 ~100ms 的初始分配空间用于存储性能信息。

请注意,此库的代码没有像我希望的那样进行充分测试,可能包含一些微妙的不确定行为。此库保持小巧和可修改,以便您可以随时验证和分叉它。

所有代码都包含在 lib.rs 中。

依赖关系

~395KB