首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

【Rust日报】2020-12-04 Glommio:一个基于Linux io_uring的高效多核线程调度库

Glommio - a Thread-per-Core Crate for Rust & Linux

Glommio是一个基于Linux io_uring的高效多核线程调度库,它可以让你的程序做到thread-per-core级别的线程调度,每个线程只分配给一个单独的核,避免线程调度时候的context switch开销。它甚至可以把线程手动pin到某个核上。

/// This will now never leave CPU 0

use glommio::LocalExecutorBuilder;

LocalExecutorBuilder::new().pin_to_cpu(0).spawn(|| async move {

// your code here

}).unwrap();

这个库还在比较早期的阶段,依然存在unsafe代码(但作者声称以后可以去掉),而且还有两个关键特性没有实现:

communication channels between executors so we can passSenddata.

per-shard memory allocator.

链接:https://www.datadoghq.com/blog/engineering/introducing-glommio/

Github:https://github.com/DataDog/glommio

lib-ruby-parser - Rust写的ruby解析器

链接:https://ilyabylich.svbtle.com/lib-ruby-parser

Github: https://github.com/lib-ruby-parser/lib-ruby-parser

《Rust Performance Book》作者从Mozilla离职

《Rust Performance Book》的作者 Nicholas Nethercote 在Mozilla工作了超过12年,其中部分工作 负责rustc的性能监控和优化(rustc-perf项目)。Nicholas离职后去的新公司是Apple。

链接:https://blog.mozilla.org/nnethercote/2020/12/04/farewell-mozilla/

Blades - 又一个 Rust 写的静态网站生成器,速度极快,号称比 Hugo 快10倍

链接:https://www.getblades.org/

-- From 日报小组 Folyd, broono

社区学习交流平台订阅:

Rustcc论坛: 支持rss

微信公众号:Rust语言中文社区

  • 发表于:
  • 原文链接https://kuaibao.qq.com/s/20201204A0HYDL00?refer=cp_1026
  • 腾讯「腾讯云开发者社区」是腾讯内容开放平台帐号(企鹅号)传播渠道之一,根据《腾讯内容开放平台服务协议》转载发布内容。
  • 如有侵权,请联系 cloudcommunity@tencent.com 删除。

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券