Ruby MongoDB 删除 GridFS 集合
如何使用 Ruby Mongo 驱动程序删除 Grid 对象? 我确实从 shell 中 drop
,因为它将 GridFS 视为集合,但如何使用 Ruby 做到这一点?
How do I drop a Grid object with the Ruby Mongo Driver?
I do drop
from the shell, because it treats GridFS as collections, but how do I do it with Ruby?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否正在尝试删除单个文件或整个 GridFS 集合? grid_file_system 支持按文件名删除。否则,您可以手动删除集合(我认为默认情况下是 fs.files 和 fs.chunks )
Are you trying to remove a single file or the entire GridFS collections? the grid_file_system supports deleting by filename. Otherwise you can manually drop the collections (I think fs.files and fs.chunks by default)
网格仅适用于集合:文件和块。所以就放弃这两个集合吧。
我不熟悉 ruby,但 mb 此链接 对你有用。
Grids it's just to collections: files and chunks. So just drop these two collections.
I am not familiar with ruby but mb this link will be useful for you.