标签:高效 keyword 是什么 dex 搜索 val cal col hat
大部分字段类型默认被索引的(inverted index),可以被搜索
search: 哪个文档有这个词
sort&aggregations: look up the document and find the terms that it has in a field.这个文档的这个字段的值是什么
"session_id": {
"type": "keyword",
"doc_values": false
}
curl -XPUT ‘localhost:9200/my_index?pretty‘ -H ‘Content-Type: application/json‘ -d‘
{
"mappings": {
"my_type": {
"properties": {
"my_field": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
}
}
}
}
}
}
}
‘
标签:高效 keyword 是什么 dex 搜索 val cal col hat
原文地址:http://www.cnblogs.com/saihide/p/7827561.html