- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在Elastic search中,为了映射它们正在使用
doc_values:true,这有什么用?
如果已经问过,请不要忽略。我需要答案。
提前致谢。
最佳答案
Doc values are now only about 10–25% slower than in-memory fielddata, and come with two major advantages:
- They live on disk instead of in heap memory. This allows you to work with quantities of fielddata that would normally be too large to fit into memory. In fact, your heap space ($ES_HEAP_SIZE) can now be set to a smaller size, which improves the speed of garbage collection and, consequently, node stability.
- Doc values are built at index time, not at search time. While in-memory fielddata has to be built on the fly at search time by uninverting the inverted index, doc values are prebuilt and much faster to initialize.
关于elasticsearch - Elasticsearch 中doc_values:true的用途是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34722828/
我有一个这样的“位置”字段 "location": { "type": "string", "index": "not_analyzed", "sto
目前我们面临很多这样的异常: ElasticsearchException[org.elasticsearch.common.breaker.CircuitBreakingException: Dat
我想在elasticsearch中为_id字段设置doc_values 因为想根据_id进行排序 点击下面的 api 更新映射给我一个错误 PUT my_index/my_type/_mapping
在 Elasticsearch 5.6 中使用以下映射: "category" => [ "type"=>"keyword", "doc_values"=>true, "ind
在对 fielddata vs doc_values 进行的一些实验中,我遇到了一个奇怪的案例。在我之前的映射中,我根本没有使用文档值。在我的新映射中,我已将 doc_values: true 添加到
我是一名优秀的程序员,十分优秀!