We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74209ac commit 57a2652Copy full SHA for 57a2652
docs/high-concurrency/es-write-query-search.md
@@ -117,3 +117,8 @@ buffer 每次 refresh 一次,就会产生一个 `segment file`,所以默认
117
另外,实用的倒排索引还可以记录更多的信息,比如文档频率信息,表示在文档集合中有多少个文档包含某个单词。
118
119
那么,有了倒排索引,搜索引擎可以很方便地响应用户的查询。比如用户输入查询 `Facebook`,搜索系统查找倒排索引,从中读出包含这个单词的文档,这些文档就是提供给用户的搜索结果。
120
+
121
+要注意倒排索引的两个重要细节:
122
123
+- 倒排索引中的所有词项对应一个或多个文档;
124
+- 倒排索引中的词项**根据字典顺序升序排列**。
0 commit comments