Im mounting an samba share from our Windows fileserver to our webserver so that the employees can transfer data to our fileexchange portal via their samba shares.
I want to stream these files via the send_file
method which doesnt work well with big files. It seems that the send_file
method waits till it has loaded the complete file which can take a very long time over the 100mbit network.
By default the :stream
option is set to true
and I also set it to true manually but it doesnt help. The method always waits till the whole file is loaded. I think the problem is that Im trying to stream from the samba share. Is there any mounting option that could help me out?