0

I'm looking for effective strategies to handle large file uploads (between 10 and 40 mbs) effectively with Ruby on Rails.

Ideally I'd like to implement a progress meter and some sort of notification when the transfer is complete.

I have looked at modporter (www.modporter.com), but I'm interested to know if there are other libraries, techniques or best practices.

Cœur
  • 37,241
  • 25
  • 195
  • 267
rswolff
  • 3,258
  • 5
  • 28
  • 31

1 Answers1

2

There are a bunch of solutions out there. You can look up this one from the rails way:

http://www.therailsway.com/2009/4/23/uploading-files

marcgg
  • 65,020
  • 52
  • 178
  • 231
  • I mentioned in my original question that I have already looked at modporter (the recommendation in the article). I'm actually looking for other solutions. – rswolff Aug 17 '09 at 16:57