An open API service indexing awesome lists of open source software.

https://github.com/macournoyer/thin_async

A nice wrapper to send response body asynchronously with Thin
https://github.com/macournoyer/thin_async

Last synced: 11 months ago
JSON representation

A nice wrapper to send response body asynchronously with Thin

Awesome Lists containing this project

README

          

# 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