是否有相当于 Rob Conery 的 Massive for NoSQL (MongoDB) 的版本?
是否有与 Rob Conery 的 Massive for NoSQL (MongoDB) 相当的工具?
我非常喜欢 Massive ,但我想将它与 NoSQL 数据库一起使用,尤其是 MongoDB 和我找不到合适的替代品。
Is there an equivalent of Rob Conery's Massive for NoSQL (MongoDB)?
I like Massive very much, but I'd like to use it with NoSQL databases, especially with MongoDB and I can't find a decent alternative.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您对它的“单文件”方面感兴趣,那么使用 MongoDB 驱动程序中提供的 Bson 序列化器/反序列化器代码创建一些东西来在文件系统中存储 Bson 文档应该不会太难。
如果您对查询方面感兴趣,那么 SQL 并不是查询 MongoDB 等文档存储的正确语言。
最后,如果您对它的动态方面感兴趣,那么到目前为止我发现的最接近的是 我自己的关于在 MongoDB 中使用动态对象的博客文章。
If you are interested in the 'single file' aspects of it then it shouldn't be too hard to create something using the Bson serializer / deserializer code provided in the MongoDB driver to store Bson documents in the file system.
If you are interested in the query aspects of it, SQL isn't the right language to query a document store like MongoDB.
And finally, if you are interested in the dynamic aspects of it, well the closest I've found to that so far is my own blog post on using dynamic objects with MongoDB.
Simple.Data 有一个 MongoDB 适配器 - https://github.com/markrendle/Simple.Data
Simple.Data has an adapter for MongoDB - https://github.com/markrendle/Simple.Data
也许我不明白(但我无论如何都不是 NoSQL 大师):
Massive 的要点是将关系数据库表映射到对象。
NoSQL 的要点在于没有关系数据库表,而是将对象直接保存到数据库中。
那么...您想将 Massive 的哪些功能与 NoSQL DB 一起使用?
您真的需要 NoSQL 的 Massive 等价物吗?
Maybe I don't get it (but I'm not a NoSQL guru by any means):
The point of Massive is to map a relational database table to an object.
The point of NoSQL is that there are no relational database tables, but that you save your objects directly into the database instead.
So...what feature of Massive do you want to use with a NoSQL DB?
Do you really need a Massive equivalent for NoSQL?