Is there some way to use something similar to x-sendfile for uploading files, e.g. saving particular stream/parameter from request to file, without putting it wholly into memory? (In particular, with apache2 and ruby fcgi)

link|improve this question

feedback

2 Answers

require 'open-uri'

CHUNK_SIZE = 8192

File.open("local_filename.dat","w") do |w|
  open("http://some_file.url") do |r|
    w.write(r.read(CHUNK_SIZE)) while !r.eof?
  end
end
link|improve this answer
I think that isn't for fcgi application that receives set of cgi parameters with data. (I'm actually referring to this: git.omp.am/?p=omploader.git;a=blob;f=scripts/… ) – HoverHell Jun 11 '10 at 13:05
feedback
up vote 0 down vote accepted

Apache's ModPorter seems to be the way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.