All Projects → macournoyer → thin_async

macournoyer / thin_async

Licence: other
A nice wrapper to send response body asynchronously with Thin

Programming Languages

ruby
36898 projects - #4 most used programming language

Thin Asynchronous Response API

A nice wrapper around Thin's obscure async callback used to send response body asynchronously. Which means you can send the response in chunks while allowing Thin to process other requests.

Crazy delicious with em-http-request for file upload, image processing, proxying, etc.

WARNING

You should not use long blocking operations (Net::HTTP or slow shell calls) with this as it will prevent the EventMachine event loop from running and block all other requests.

Usage

Inside your Rack app #call(env):

Thin::AsyncResponse.perform(env) do |response|
  response.status = 201
  response.headers["X-Muffin-Mode"] = "ACTIVATED!"

  response << "this is ... "

  EM.add_timer(1) do
    # This will be sent to the client 1 sec later without blocking other requests.
    response << "async!"
    response.done
  end
end

See example/ dir for more.

(c) macournoyer

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].