kbio基于io_uring的异步 IO 框架
- 支持多线程并发任务提交。
- 很快。
- 实现在 tokio 中引入的 AsyncRead/AsyncWrite trait。
ReadMore:https://github.com/KuiBaDB/kbio
Blog:https://blog.hidva.com/2021/09/14/kbio/
KuiBaDB
KuiBaDB是另一个用Asynchronous Rust重写的PostgreSQL,KuiBaDB专注于 OLAP 分析。
KuiBaDB建立在kbio和tokio之上。只用 tokio 的“rt-multi-thread”、“rt”和“io-util”功能。所有 IO,包括文件 IO 和网络 IO,以及异步系统调用都由kbio提供支持。
KuiBaDB使用矢量化引擎,也是目录驱动的。KuiBaDB使用了Hologres 中引入的列式存储。但是我删除了Delete Map并为每行添加了xmin,xmax,xmin/xmax保存在行存储中。
ReadMore:https://github.com/KuiBaDB/KuiBaDB
Robyn
Robyn 是一个由用 Rust 编写的异步 Python 后端HTTP服务运行时。
在 Rust 异步运行时之上运行的 Python 服务。
安装
pip install robyn
用法
from robyn import Robyn
app = Robyn(__file__)
@app.get("/")
async def h():
return "Hello, world!"
app.start(port=5000)
GET 请求
```python3
@app.get("/")
async def h(request):
return "Hello World"
```
POST 请求
```python3
@app.post("/post")
async def postreq(request):
return bytearray(request["body"]).decode("utf-8")
```
ReadMore:https://sansyrox.github.io/robyn
From 日报小组 冰山上的 mook && Mike
社区学习交流平台订阅:
评论区
写评论还没有评论