Xactor is a rust actors framework based on async-std。


1. 速度比actix快40%(见后面测试,为部分性能),具体原因还不清楚,需要研究一下actix内部实现,晚点发和几个现有框架对比的性能测试代码

2. 完全兼容await语法,不是actix那样自己一套future体系,容易和其它支持await的库结合使用


增加与actix的性能对比 https://github.com/sunli829/xactor

Performance

Actix vs. Xactor


Wait for response

Send only

Actix

1548 ms

14 ms

Xactor

930 ms

30 ms