如何在ElasticSearch中构造索引

时间:2018-08-06 21:28:57

标签: elasticsearch

比方说,我有用户索引和博客索引。现在,我要允许用户通过博客创建帖子。

我首先想到的是这就是我的索引的样子:

{
  "title": "Blog post title",
  "content": "Post text",
  "user": {
    "username": "lala",
    "name": "Johnny",
    "birthday": "1991-29-12"
  }
}

看起来不错。但是如果用户更改了姓名和生日该怎么办。然后,我需要遍历所有博客文章并更新“用户”对象?

如果需要使用多个索引怎么办?

我应该如何存储这样的数据?

0 个答案:

没有答案