< 返回版块

rust 日报 babpstep 发表于 2022-11-01 19:22

Tags:async, tokio, bignum

async-backtrace 发布

tokio 官方团队近日发布了 async-backtrace 的初个版本,旨在让开发者能够高效地追踪应用中异步任务的状态。

使用步骤如下:

  1. 首先将该 crate 加入到 Cargo.toml 文件中:
[dependencies]
async-backtrace = "0.2"
  1. 使用 #[async_backtrace::framed] 标注一个异步函数可用于追踪,使用 taskdump_tree 以树的形式输出当前所有被追踪的任务状态:
#[tokio::main(flavor = "current_thread")]
async fn main() {
    tokio::select! {
        // run the following branches in order of their appearance
        biased;

        // spawn task #1
        _ = tokio::spawn(foo()) => { unreachable!() }

        // spawn task #2
        _ = tokio::spawn(foo()) => { unreachable!() }

        // print the running tasks
        _ = tokio::spawn(async {}) => {
            println!("{}", async_backtrace::taskdump_tree(true));
        }
    };
}

#[async_backtrace::framed]
async fn foo() {
    bar().await;
}

#[async_backtrace::framed]
async fn bar() {
    baz().await;
}

#[async_backtrace::framed]
async fn baz() {
    std::future::pending::<()>().await
}
  1. 运行上述代码示例,会输出以下内容
╼ multiple::foo::{{closure}} at backtrace/examples/multiple.rs:22:1
  └╼ multiple::bar::{{closure}} at backtrace/examples/multiple.rs:27:1
     └╼ multiple::baz::{{closure}} at backtrace/examples/multiple.rs:32:1
╼ multiple::foo::{{closure}} at backtrace/examples/multiple.rs:22:1
  └╼ multiple::bar::{{closure}} at backtrace/examples/multiple.rs:27:1
     └╼ multiple::baz::{{closure}} at backtrace/examples/multiple.rs:32:1

需要注意的是,async-backtrace 才刚刚起步,如果遇到任何问题,欢迎大家在 github issue 上进行反馈

astro-float:一个任意精度的浮点数库

作者 stencillogic 近日发布了使用纯 rust 实现的一个任意精度的浮点数库 astro-float,采用了很多广泛使用的算法,例如 Toom-3Schönhage–Strassen 等大数乘法。

此类完全使用 Rust 实现的浮点数运算库还有 ibignum-bigint,相比于 rug 这类对于 GMP 的绑定库,它们最大的好处是完全用 Rust 实现,不依赖 std,但是在性能上仍有差距。

更详细的 benchmark 结果可以参考以下文章:

-- From 日报小组 RustPlumber

社区学习交流平台订阅:

评论区

写评论
Vicky-669 2022-11-03 13:55

有兴趣考虑rust开发相关岗位可以直接加我微信内推哦,微信号: Lmt06100824,加好友备注rust社区求职。

1 共 1 条评论, 1 页