render :text => lambda { |resp, out|
out.puts 'start'
out.flush
2.times do
out.puts '.'
out.flush
sleep 1
end
out.puts 'done'
}
Hi, using that code (find in archive), I am only able to print the whole
chunk not step by step. Any idea? I use mongrel and lighttpd. Both does
not work if webserver influence this.