In a Rails file sharing application that I have been working on, I want user to be able to download a zip of all the files under one folder. Currently I am using rubyzip gem,specifically ZipOutPutstream to accomplish this task. Here is the code that I put in a Controller, in other words, I compress files on the fly.

 Zip::ZipOutputStream.open(t.path) do |z|
    @folder.stuffs.each do |file|
      title = file.file_file_name
      z.put_next_entry(title)
      z.print IO.read(file.file.to_file)
    end
  end 

It works fines, but also brings two issues: 1. It takes time (quite long actually) for the application to compress the folder, obviously, the bigger the size of folder is, the longer it takes(to compress the folder). Letting user wait is clearly not a very user friendly solution. My current hack is to use a progress bar to estimate how much time it takes to compress the file. But I wish to shorten the time it takes to compress files. 2. I am not sure if rubyzip will use up system's resource dramatically. Suppose there were hundreds of thousands of users downloading/compressing the files at the same time, would system be able to handle this sort of task nicely?

I know another solution is to let ec2 compress the files, but will computing cost be high? (although I know the transfer cost between s3 and ec2 is free)

Are there other solutions out there? Or do you think ec2 is the only choice?

Any help is appreciated!

link|improve this question

80% accept rate
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.