Can you explain, what is the different between send_data and send_file. Which one is best for streaming and file download process?.
|
feedback
|
|
send_data(data, 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
Or
For perfomance it is better to generate file once and then send it as many times as you want. So 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:
| |||||||||
feedback
|