1 个稳定版本
1.0.0 | 2022 年 5 月 2 日 |
---|
#1165 在 HTTP 服务器
10KB
94 行
!(image1)https://imgur.com/5qaPfr3.png
actix-web-tonic
actix-web-tonic
是actix-web
+tonic
的并发运行器。- 使用这个crate,您可以轻松地使用 Web + gRPC 创建丰富且快速的服务器应用程序。
用法
- 像平常一样实现您的
actix-web
服务器,并获取未来
let actix_future = HttpServer::new(|| { App::new().service(...
...brabrabra...
.bind("[::1]:50000").unwrap()
.workers(8) // <- # of workers setting is here in actix-web.
.run(); // <- this type is `Service`, it's an `impl` of `Future`.
- 像平常一样实现您的
tonic
服务器,并获取未来
let tonic_future = Server::builder().add_service(...
...brabrabra...
...serve(addr); // <- this type is a simple `Future` of `asyncl`.
- 并发地调用您 actix-web 的未来和您的 tonic 未来
let tonic_worker_threads = 16; // <- # of workers setting is here in tonic.(=# of tokio workers)
let result = actix_web_tonic::invoke(actix_future, tonic_future, tonic_worker_threads);
然后,测试您的服务器
# gRPC:
$ grpcurl -plaintext -import-path ./proto -proto helloworld.proto -d '{"name": "Tonic"}' '[::1]:50001' helloworld.Greeter/SayHello
{
"message": "Hello Tonic!"
}
# Web:
$ curl '[::1]:50000/teapot' -v
* Trying ::1:50000...
* TCP_NODELAY set
* Connected to ::1 (::1) port 50000 (#0)
> GET /teapot HTTP/1.1
> Host: [::1]:50000
> User-Agent: curl/7.68.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 418 I'm a teapot
< content-length: 23
< date: Sun, 01 May 2022 23:29:41 GMT
<
* Connection #0 to host ::1 left intact
I like a green tea.🍵%
- 想要所有示例吗?
- => 完整示例在这里:examples/simple/
动机和备注
- 我尝试实现一个单一的 bin 进程 actix-web + tonic 服务,但编写每个工作的代码有点困难。然后,我发布了这个 crate。这将对我个人的未来,当然也是对这个 crate 的查看者的一个好帮手。💕
- 当然,这个crate是为服务器设计的。如果你的目标不是提供服务器,而是要完成应用程序,你也需要用于客户端的crate来对抗WASM、HTML/CSS以及UI/UX。💪
许可证
作者
- USAGI.NETWORK / Usagi Ito https://github.com/usagi/
依赖项
~16–30MB
~500K SLoC