Rails 应用程序的共享文件存储
我有一个接受文件上传的 Rails 应用程序,我想知道在服务器之间拥有公共存储的最佳方式。 由于我们有许多 Windows 应用程序,我们过去使用过 samba,但当我们构建纯 Linux 应用程序时,我希望以最好的方式做到这一点。
我们预计会有大量数据,因此需要跨多个文件服务器进行扩展。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我在 S3 后端使用了 paperclip 。
I've used paperclip with an S3 backend.
如果您想将所有数据保留在内部,那么网络文件系统可能是最佳选择。 尝试设置 AFS 它的扩展性非常好。
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.
另一个不错的选择来自 Memcached 的创建者:
Mogile FS
http://www.danga.com/mogilefs/
Another good alternative is from the creators of Memcached:
Mogile FS
http://www.danga.com/mogilefs/
一种简单的方法是将 Attachment_fu 与 S3 后端结合使用。
One easy way to do it is to use attachment_fu with an S3 backend.