Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am building a Rails application where user can upload very huge files. So I planned to receive files as multiple chunks so that I can assemble chunks at the server side. I searched about the streaming in Rails framework. I can find more information about down streaming(Server -> Client).

http://weblog.rubyonrails.org/2011/4/18/why-http-streaming/

http://www.intridea.com/blog/2012/5/24/building-streaming-rest-apis-with-ruby

Is there any way to receive files as chunks in Rails application without creating temfile?

share|improve this question
Look into resumable file uploads. A quick Google search turned up the following link github.com/stakach/Resumable-Uploads – Anand Oct 8 '12 at 12:56
Sorry I put send instead of receive in my question. – soundar Oct 8 '12 at 13:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.