fonzo14 / em_aws

EM-Synchrony handler for AWS-SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EmAws

An EM-Synchrony handler for Ruby AWS-SDK

Installation

em_aws is available through Rubygems and can be installed via:

$ gem install em_aws

Rails 3 setup (no rails 2 sorry)

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.eager_autoload! # AWS lazyloading is not threadsafe
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.

References

aws-sdk

Async-Rails

Phat

Contributing to em_aws

  • 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.

Thanks

Code based on HTTParty Hander in aws-sdk

License

EmAws license AWS-SDK license

About

EM-Synchrony handler for AWS-SDK

License:MIT License


Languages

Language:Ruby 100.0%