Home

Awesome

thrift-rack-middleware

A simple rack middleware that can intercept HTTP thrift requests.

This is useful when used in combination with a pooled application server like passenger. It is not an easy task to have thrift directly target worker processes that application servers like passenger manage.

Accessing the handler applications via thrift this was may not be the fastest, but it is one of the easier ways to get started.

Usage

If you want to add this middleware to a Rails application, add the following to your config/application.rb

handler = ThriftHandler.new
processor = MyThrift::Processor.new(handler)
config.middleware.use Thrift::RackMiddleware,
                      processor: processor,
                      hook_path: '/thrift_rpc',
                      protocol_factory: Thrift::BinaryProtocolAcceleratedFactory.new

Defaults

Logging

You can optionally pass in a custom logger instance. If your application is a Rails application, Rails.logger will automatically be used. If your application is a Rack application, rack logger will automatically be used. Otherwise, logging will be directed to STDOUT

Future features

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request