An EM-Synchrony handler for Ruby AWS-SDK
This code has be submitted to AWS-SKD see: pull request. Until approval (or if it is declined) I created this gem.
em_aws is available through Rubygems and can be installed via:
$ gem install em_aws
Setup AWS-SKD as you would normally.
Assuming you've already setup async-rails, add em_aws to you gemfile:
gem 'em_aws'
Then run:
bundle install
In your environments files add:
require 'aws-sdk'
require 'aws/core/http/em_http_handler'
AWS.config(
:http_handler => AWS::Http::EMHttpHandler.new(
:proxy => {:host => "http://myproxy.com", :port => 80}
))
Your done.
All requests to AWS will use EM-Synchrony's implementation of em-http-request for non-block HTTP request and fiber management.
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
- Fork the project
- Start a feature/bugfix branch
- Commit and push until you are happy with your contribution
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
- Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
Code based on HTTParty Hander in aws-sdk