如何使用Morphia框架在mongoDB项目中添加索引

发布于 2024-12-06 04:13:29 字数 312 浏览 1 评论 0原文

我正在开发一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

背叛残局 2024-12-13 04:13:29

Mongodb 将自动使用索引,这样吗啡就不会处理它。您应该对常用于查询的字段建立索引,例如:

帖子:

{
    title : "My title", // indexed
    content : "My long long long long loooooong content" // Not indexed
}

在上面显示的简单帖子文档中,您会看到标题字段已建立索引,因为博客引擎通常搜索标题而不是内容,而且内容会使用很多内容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:

{
    title : "My title", // indexed
    content : "My long long long long loooooong content" // Not indexed
}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文