module ActionController::Streaming

def _process_options(options)

Set proper cache control and transfer encoding when streaming
def _process_options(options)
  super
  if options[:stream]
    if request.version == "HTTP/1.0"
      options.delete(:stream)
    else
      headers["Cache-Control"] ||= "no-cache"
      headers["Transfer-Encoding"] = "chunked"
      headers.delete("Content-Length")
    end
  end
end