Replies: 1 comment 1 reply
-
@ioquatix hi :) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After porting IO-bound (lot of aws-s3 uploads) project to falcon without any code modification it shows outstanding concurrency. S3 uploads take most of the request processing time.
After that I decided to change default http request to async-aws-ruby gem which uses
Async::Http::Endpoint
andAsync::Http::Request
. And there is no difference between officialaws::s3
(generic http) and patchedasync::aws::sdk
.Is there because ruby 3.x has better async support and there is no more need to use async-http in general case http scenario?
Beta Was this translation helpful? Give feedback.
All reactions