Ruby 通用文件系统库
我正在寻找 ruby 的“虚拟文件系统”类型库。我希望能够拥有一个完全通用的文件系统,我可以轻松地在使用本地文件和使用 S3 或使用 FTP 或类似的东西之间切换。 (与 Java 的 VFS 相同)
是否有人使用过任何类型的 ruby 通用文件系统(我只需要它来支持本地文件和 Amazon S3)
任何指针将不胜感激。
I am looking for a "Virtual File System" type library for ruby. I want to be able to have a completely generic file system that I can easily switch between using Local files and using S3 or using FTP or something like that. (Identical to VFS for Java)
Has anybody used any type of generic file system for ruby (I just need it to support local files and Amazon S3)
Any pointers would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下 Vfs(虚拟文件系统)——它通过本地文件系统、AWS S3、SFTP 提供简单且统一的接口。
概述:http://alexeypetrushin.github.com/vfs
S3 示例:http://alexeypetrushin.github.com/vfs/s3_basics.html
Take a look at Vfs (Virtual File System) - it provides simple and unified interface over Local File System, AWS S3, SFTP.
Overview: http://alexeypetrushin.github.com/vfs
S3 samples: http://alexeypetrushin.github.com/vfs/s3_basics.html
您可以在操作系统级别使用诸如 FUSE 之类的东西吗?我知道有几个 S3 后端用于保险丝。
Can you use something at the OS level like FUSE? I know of several S3 backends for fuse.