RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: yossis
I noticed that remote_image_url downloads the image from the remote server[S3] and the save method re-upload the images.
remote_image_url
save
The implication of that: If the server downloads the image and re-uploads it again, We did not spare anything.
Is there a way to upload just the process image (like the thumbnails) and not re-upload the source image?
I noticed that
remote_image_url
downloads the image from the remote server[S3] and thesave
method re-upload the images.The implication of that:
If the server downloads the image and re-uploads it again, We did not spare anything.
Is there a way to upload just the process image (like the thumbnails) and not re-upload the source image?