Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

File storage in Heroku - alternatives? [closed]

I have an app in Heroku and love its simplicity, however, I need simple file storage for uploaded images (using file_column). As I see it, my options are to migrate over to Slicehost or get the Heroku app working with Amazon S3 (I'm a bit perplexed by the S3 pricing scheme). Are there other alternatives?

like image 347
Newy Avatar asked Jul 18 '09 22:07

Newy


1 Answers

I have multiple apps on Heroku using S3 for uploads.

I would recommend using the attachment_fu or paperclip plugin over file_column. These plugins make it trivial to switch from the local file system to s3 (literally just ":storage => s3")

S3 has been reliable, fast, and cheap for me.

like image 159
Chap Avatar answered Sep 28 '22 04:09

Chap