内容简介:Warp is a Rust web server framework focusing on composability and strongly-typed APIs.Today sees the release ofThe most exciting part of this release is the upgrade to
Warp is a Rust web server framework focusing on composability and strongly-typed APIs.
Today sees the release of v0.2 !
Async and Await
The most exciting part of this release is the upgrade to std::future
, so you can now use async
/ await
for cleaner flow control. Due to how warp encourages composition of filters, this is most noticeable at the “ends” of a filter chain, where an application is doing its “business logic”, converting input into actions and replies. And that’s where most of the app code is!
Services
In the original release of warp , I wrote:
We’d like for warp to be able to make use of all the great tower
middleware that already exists.
As part of this release, that is now possible! Any Filter
which returns a Reply
can now be converted into a Service
using warp::service(filter)
. This means you can wrap your filters with any of the growing middlewares, as described in the hyper v0.13 announcement
.
Thanks
This was a lot of work by over 60 new contributors
, including the massive std::future
refactor by new collaborator @jxs
.
Be sure to check the changelog for all the goodies!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
算法技术手册
George T. Heineman、Gary Pollice、Stanley Selkow / 杨晨、李明 / 机械工业出版社 / 2010-3 / 55.00元
《算法技术手册》内容简介:开发健壮的软件需要高效的算法,然后程序员们往往直至问题发生之时,才会去求助于算法。《算法技术手册》讲解了许多现有的算法,可用于解决各种问题。通过阅读它,可以使您学会如何选择和实现正确的算法,来达成自己的目标。另外,书中的数学深浅适中,足够使您可以了解并分析算法的性能。 较之理论而言,《算法技术手册》更专注于应用。《算法技术手册》提供了高效的代码解决方案,使用多种语言......一起来看看 《算法技术手册》 这本书的介绍吧!