Can you explain, what is the different between send_data and send_file. Which one is best for streaming and file download process?.

link|improve this question

feedback

1 Answer

up vote 11 down vote accepted

send_data(data, options = {})
send_file(path, options = {})

Main difference here is that you pass DATA (binary code or whatever) with send_data or file PATH with send_file.

So you can generate some data and send it as an inline text or as an attachment without generating file on your server via send_data. Or you can send ready file with send_file

data = "Hello World!"
send_data( data, :filename => "my_file.txt" )

Or

data = "Hello World!"
file = "my_file.txt"
File.open(file, "w"){ |f| f << data }
send_file( file )

For perfomance it is better to generate file once and then send it as many times as you want. So send_file will fit better.

For streaming, as far as I understand, both of this methods use the same bunch of options and settings, so you can use X-Send or whatever.

UPD

send_data and save file:

data = "Hello World!"
file = "my_file.txt"
File.open(file, "w"){ |f| f << data }
send_data( data )
link|improve this answer
thanks @fl00r. Is there way to save the data as file and then send, using the send_data function?. Because, i needed a copy of the file in my server. How can i achieve that?. – Mr. Black Apr 4 '11 at 8:43
ofcourse. In the same way as send_file. see my update – fl00r Apr 4 '11 at 8:47
There's an error in your code: it should be { |f| f << data }. – True Soft Sep 22 '11 at 10:22
yeap, you're right – fl00r Sep 22 '11 at 10:31
feedback

Your Answer

 
or
required, but never shown

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