https://github.com/railsware/rest-client-adapters
RestClient Adapters
https://github.com/railsware/rest-client-adapters
Last synced: 11 months ago
JSON representation
RestClient Adapters
- Host: GitHub
- URL: https://github.com/railsware/rest-client-adapters
- Owner: railsware
- License: mit
- Created: 2019-08-21T21:39:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-22T08:45:49.000Z (over 6 years ago)
- Last Synced: 2024-04-26T02:20:22.995Z (over 1 year ago)
- Language: Ruby
- Size: 18.6 KB
- Stars: 1
- Watchers: 8
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# RestClient Adapters [](https://travis-ci.org/railsware/rest-client-adapters)
This gem allows to use different HTTP implementation in RestClient with next adapters:
* `:net_http` - Net::HTTP (default, blocking I/O)
* `:em_http` - EventMachine::HttpRequest (non-blocking I/0)
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'rest-client-adapters'
```
And then execute:
$ bundle
Or install it yourself as:
$ gem install rest-client-adapters
## Usage
You may specify adapter for each request:
```ruby
RestClient.get('https://www.google.com')
RestClient.get('https://www.google.com', adapter: :em_http)
```
Or you may specify adapter globaly:
```ruby
RestClient.adapter = :em_http
RestClient.get('https://www.google.com')
```
## Notes
When EventMachine is already running we assume that you are responsible for Fiber allocation.
You can add `Rack::FiberPool` to your application middleware and it automatically provides a Fiber for each incoming HTTP request. It creates pool of Fibers and re-use fiber for each incoming HTTP request. Also you can control the connection pool size.
## Authors
* [Andriy Yanko](http://ayanko.github.io)
## References
* https://github.com/rest-client/rest-client
* https://github.com/igrigorik/em-http-request
* https://github.com/alebsack/rack-fiber_pool