Completion 字段类型
编辑Completion 字段类型
编辑要使用 completion
建议器,请将要从中生成建议的字段映射为 completion
类型。这会为字段值建立索引,以便快速完成建议。
resp = client.indices.create( index="music", mappings={ "properties": { "suggest": { "type": "completion" } } }, ) print(resp)
response = client.indices.create( index: 'music', body: { mappings: { properties: { suggest: { type: 'completion' } } } } ) puts response
const response = await client.indices.create({ index: "music", mappings: { properties: { suggest: { type: "completion", }, }, }, }); console.log(response);
PUT music { "mappings": { "properties": { "suggest": { "type": "completion" } } } }
completion
字段的参数
编辑completion
字段接受以下参数
要使用的索引分析器,默认为 |
|
要使用的搜索分析器,默认为 |
|
|
保留分隔符,默认为 |
|
启用位置增量,默认为 |
|
限制单个输入的长度,默认为 |