I'm trying to make the process of uploading images quicker on my first professional rails app and have started going in circles. I'm using jquery direct upload to upload directly to s3 which makes things quicker from the point of view that the image file doesn't touches the server. However, when I try to process the file using delayed paperclip and delayed job, the file is copied back to the server for processing - which I wanted to avoid at the first place.
Could the experts out there suggest a better way by which I can process my image on s3 itself without having to copy it back to sever or perhaps resize it in jquery before uploading ?
I tried to follow the answer in this post Using Delayed Paperclip With S3 Direct Upload , but it did not help as I get lots of errors..
Any suggestions or pointers would be helpful!
TIA!!