We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Version: Deno 1.44.4
this is faster:
Deno.serve(() => new Response("hi"));
oha -n 10000 http://localhost:8000/ req/s: 38k
and this is slower:
const hi = new Response("hi"); Deno.serve(() => hi.clone());
oha -n 10000 http://localhost:8000/ req/s: 8k
this didn't make sense to me since Response.clone() should be at least not slower or faster with big responses
The text was updated successfully, but these errors were encountered:
resp.clone()
lucacasonato
Successfully merging a pull request may close this issue.
Version: Deno 1.44.4
this is faster:
oha -n 10000 http://localhost:8000/
req/s: 38k
and this is slower:
oha -n 10000 http://localhost:8000/
req/s: 8k
this didn't make sense to me since Response.clone() should be at least not slower or faster with big responses
The text was updated successfully, but these errors were encountered: