#benchmark #async #async-test #bench #test

malory

用于基准测试异步函数(Futures)的工具

3 个不稳定版本

0.2.1 2021 年 1 月 20 日
0.2.0 2021 年 1 月 20 日
0.1.0 2021 年 1 月 11 日

#1290 in 开发工具

MIT 许可证

4KB

Malory

Crates.io MIT licensed Build Status

Malory 是一个使用 Tokio 的 Rust 异步基准测试工具。

使用方法

use malory;

#[tokio::main]
fn main() {
  let iterations = 1000;
  let parallelism = 5;
  let context = "That's how you get ants.";

  malory::judge_me(iterations, parallelism, context, |ctx, i| async { true }).await;
}

依赖项

~3–14MB
~127K SLoC