Created
June 29, 2017 17:31
-
-
Save a2ikm/b67146ad103c57364f02fcff1ba14a26 to your computer and use it in GitHub Desktop.
chunked
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Page | |
def each | |
loop do | |
yield %w(one two thee four five).sample | |
sleep 1 | |
end | |
end | |
end | |
use Rack::Chunked | |
app = ->(env) { | |
[ | |
200, | |
{ "Content-Type" => "text/plain" }, | |
Page.new, | |
] | |
} | |
run app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# window 1 | |
$ rackup -s puma | |
# window 2 | |
$ curl -i --raw http://localhost:9292 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment