< 返回版块

Cupnfish 发表于 2022-10-27 22:30

hyper v1.0.0 Release Candidate 1

hyper将发布v1.0.0-rc1版本,算是喜大普奔了。

Blog: https://seanmonstar.com/post/699184177097179136/hyper-v100-rc1

2022年10月是如何加快Rust编译器的速度

这个新闻需要结合前几天reddit上的一个帖子一起看,好几天前的了,懒得翻,简单说一下,大概是某个Rust用户发现最近的编译项目速度比之前明显快了很多,查了一下最近合并的PR,发现有一个和LTO( link-time optimization)相关的一个PR合并之后编译速度明显提升。

本文算是对这个事件的一个延伸,当然不止这一个合并,还提到了最近几个月来在编译速度上做出的一些工作。感兴趣的可以看一看原文。

Blog: https://nnethercote.github.io/2022/10/27/how-to-speed-up-the-rust-compiler-in-october-2022.html

新的异步流处理器--Deluge

gif

可以理解成rayon的异步版本。

let result = deluge::iter([1, 2, 3, 4])
    .map(|x| async move { x * 2 })
    .collect::<Vec<usize>>(None)
    .await;

assert_eq!(vec![2, 4, 6, 8], result);

let result = (0..150)
    .into_deluge()
    .map(|idx| async move {
        tokio::time::sleep(Duration::from_millis(50)).await;
        idx
    })
    .collect_par::<Vec<usize>>(10, None)
    .await;

assert_eq!(result.len(), 150);

Github: https://github.com/mkawalec/deluge

This Week in Rust 466

Rust周报645期

This Week in Rust 466: https://this-week-in-rust.org/blog/2022/10/26/this-week-in-rust-466/

From 日报小组 Cupnfish

社区学习交流平台订阅:

评论区

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

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

RedPanda 2022-10-28 08:49

日报小组每天也是高强度冲浪啊~

1 共 2 条评论, 1 页