You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[breaking]@io.BufferedReader::op_as_view now returns a @bytes.View instead of Bytes. This avoids unnecessary data copy, but the returned bytes view will become invalid once any data is consumed from the reader. So users should refactor their code, insert manual copy if necessary
add @http.ServerConnection, which represents a HTTP connection at the server side. This type provides helpers for writing HTTP server, and provides better performance (by sharing some resource for the whole connection)
a lot of performance improvements
[internal] added benchmarks for the library in examples/tcp_server_benchmark and examples/http_server_benchmark