elasticsearch-analysis-dynamic-synonym同义词插件实现热更

梁丘经艺
2023-12-01

1 安装elasticsearch-analysis-dynamic-synonym插件

下载地址:GitHub - bells/elasticsearch-analysis-dynamic-synonym: The dynamic synonym plugin adds a synonym token filter that reloads the synonym file(local file or remote file) at given intervals (default 60s).

2 定义ES索引结构

name属性使用自定义"同义词分词器"

{
	"test_index_001": {		
		"mappings": {
			"properties": {				
				"id": {
					"type": "long"
				},
				"name": {
					"type": "text",
					"analyzer": "synonym"
				}				
			}
		},
		"settings": {
			"index": {
			
 类似资料: