csexton
csexton

Reputation: 24793

Shared file storage for a Rails Application

I have a rails app that accepts file uploads and I wanted to know the best way to have common storage between servers. Since we have a number of windows applications we have used samba in the past, but as we build pure linux apps I would like to do this the best possible way.

We are expecting large amounts of data, so would need to scale this across multiple file servers.

Upvotes: 5

Views: 1540

Answers (4)

TonyLa
TonyLa

Reputation: 734

Another good alternative is from the creators of Memcached:

Mogile FS http://www.danga.com/mogilefs/

Upvotes: 2

Honza
Honza

Reputation: 4409

If you want to have all the data in-house than a networked file-system might be the way to go. Try setting up AFS it scales pretty good.

Upvotes: 2

Mike Breen
Mike Breen

Reputation: 2610

I've used paperclip with an S3 backend.

Upvotes: 4

Dustin
Dustin

Reputation: 90980

One easy way to do it is to use attachment_fu with an S3 backend.

Upvotes: 1

Related Questions