如何使用Morphia框架在mongoDB项目中添加索引
我正在开发一个 gwt 项目,该项目使用 mongoDB 作为数据库,并使用 morphia 框架与 mongodb 配合使用。
我已经完成了类的基本 dao,现在我想在类中插入索引以加速 mongo 搜索。
我查看了吗啡文档,发现有一个 @Indexed 可以做到这一点,但我不知道如何在搜索中真正使用索引。吗啡会自动使用索引吗?
有谁在实际项目中有一个很好的索引示例吗? (mongodb 站点的 hello world 示例没有太大帮助)
== 编辑 ==
建议仅在嵌入字段中插入索引吗?
i'm working on a gwt project, that uses mongoDB as database, and morphia framework to work with mongodb.
I already finished the basic dao of my classes and now i want to insert indexes in my classes to speedup the mongo searches.
I looked the morphia documentation, and i saw that haves a @Indexed that makes this, but i don't know how to really use the index in a search. The morphia will automatically use the index?
Does anyone have a good example of index in a real project ? (the hello world examples of mongodb site doesn't help to much)
== EDIT ==
Is recommended insert index only in embed fields ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Mongodb 将自动使用索引,这样吗啡就不会处理它。您应该对常用于查询的字段建立索引,例如:
帖子:
在上面显示的简单帖子文档中,您会看到标题字段已建立索引,因为博客引擎通常搜索标题而不是内容,而且内容会使用很多内容RAM 的大小,因此它可能不适合内存。这可能不是最好的例子,但它显示了主要思想。
我建议您阅读索引链接。
Mongodb will automatically use indexes so that isn't handled by morphia. You should index fields that you would commonly use for queries, for example:
Post:
In the simple post document shown above you see that the title field is indexed because a blog engine commonly searches over titles instead of contents plus the content will use a lot of your RAM so it might not fit in memory. That might no be the best example but it shows the main idea.
I suggest you to read the indexes link.