[Elasticsearch](三)安裝本地Elasticsearch的IK分詞插件和拼音分詞插件

目錄: https://github.com/dolyw/ProjectStudy/tree/master/Elasticsearch

項目地址

安裝本地Elasticsearch的IK分詞插件

https://github.com/medcl/elasticsearch-analysis-ik/releases下載對應Elasticsearch版本的IK分詞插件elasticsearch-analysis-ik-7.3.0.zip這個文件六孵,打開可以看到如下文件

commons-codec-1.9.jar
commons-logging-1.2.jar
config/
elasticsearch-analysis-ik-7.2.0.jar
httpclient-4.5.2.jar
httpcore-4.4.4.jar
plugin-descriptor.properties
plugin-security.policy

沒問題溉旋,就解壓到你安裝的Elasticsearch目錄的plugins目錄下,例如我的路徑是這樣的D:\Tools\elasticsearch-7.2.0\plugins\elasticsearch-analysis-ik-7.2.0

重啟Elasticsearch旷坦,可以看到控制臺打印日志

loaded plugin [analysis-ik]

測試一下

POST /_analyze
{
  "text":"中華人民共和國國徽",
  "analyzer":"ik_smart"
}

返回

{
    "tokens": [
        {
            "token": "中華人民共和國",
            "start_offset": 0,
            "end_offset": 7,
            "type": "CN_WORD",
            "position": 0
        },
        {
            "token": "國徽",
            "start_offset": 7,
            "end_offset": 9,
            "type": "CN_WORD",
            "position": 1
        }
    ]
}
POST /_analyze
{
  "text":"中華人民共和國國徽",
  "analyzer":"ik_max_word"
}

返回

{
    "tokens": [
        {
            "token": "中華人民共和國",
            "start_offset": 0,
            "end_offset": 7,
            "type": "CN_WORD",
            "position": 0
        },
        {
            "token": "中華人民",
            "start_offset": 0,
            "end_offset": 4,
            "type": "CN_WORD",
            "position": 1
        },
        {
            "token": "中華",
            "start_offset": 0,
            "end_offset": 2,
            "type": "CN_WORD",
            "position": 2
        },
        {
            "token": "華人",
            "start_offset": 1,
            "end_offset": 3,
            "type": "CN_WORD",
            "position": 3
        },
        {
            "token": "人民共和國",
            "start_offset": 2,
            "end_offset": 7,
            "type": "CN_WORD",
            "position": 4
        },
        {
            "token": "人民",
            "start_offset": 2,
            "end_offset": 4,
            "type": "CN_WORD",
            "position": 5
        },
        {
            "token": "共和國",
            "start_offset": 4,
            "end_offset": 7,
            "type": "CN_WORD",
            "position": 6
        },
        {
            "token": "共和",
            "start_offset": 4,
            "end_offset": 6,
            "type": "CN_WORD",
            "position": 7
        },
        {
            "token": "國",
            "start_offset": 6,
            "end_offset": 7,
            "type": "CN_CHAR",
            "position": 8
        },
        {
            "token": "國徽",
            "start_offset": 7,
            "end_offset": 9,
            "type": "CN_WORD",
            "position": 9
        }
    ]
}

IK分詞插件就這樣安裝成功了

安裝本地Elasticsearch的拼音分詞插件

https://github.com/medcl/elasticsearch-analysis-pinyin/releases下載對應Elasticsearch版本的IK分詞插件elasticsearch-analysis-pinyin-7.2.0.zip這個文件,打開可以看到如下文件

elasticsearch-analysis-pinyin-7.2.0.jar
nlp-lang-1.7.jar
plugin-descriptor.properties

沒問題构拳,就解壓到你安裝的Elasticsearch目錄的plugins目錄下店诗,例如我的路徑是這樣的D:\Tools\elasticsearch-7.2.0\plugins\elasticsearch-analysis-pinyin-7.2.0

重啟Elasticsearch,可以看到控制臺打印日志

loaded plugin [analysis-pinyin]

測試一下

POST /_analyze
{
  "text":"中華人民共和國國徽",
  "analyzer":"pinyin"
}

返回

{
    "tokens": [
        {
            "token": "zhong",
            "start_offset": 0,
            "end_offset": 0,
            "type": "word",
            "position": 0
        },
        {
            "token": "zhrmghggh",
            "start_offset": 0,
            "end_offset": 0,
            "type": "word",
            "position": 0
        },
        {
            "token": "hua",
            "start_offset": 0,
            "end_offset": 0,
            "type": "word",
            "position": 1
        },
        {
            "token": "ren",
            "start_offset": 0,
            "end_offset": 0,
            "type": "word",
            "position": 2
        },
        {
            "token": "min",
            "start_offset": 0,
            "end_offset": 0,
            "type": "word",
            "position": 3
        },
        {
            "token": "gong",
            "start_offset": 0,
            "end_offset": 0,
            "type": "word",
            "position": 4
        },
        {
            "token": "he",
            "start_offset": 0,
            "end_offset": 0,
            "type": "word",
            "position": 5
        },
        {
            "token": "guo",
            "start_offset": 0,
            "end_offset": 0,
            "type": "word",
            "position": 6
        },
        {
            "token": "guo",
            "start_offset": 0,
            "end_offset": 0,
            "type": "word",
            "position": 7
        },
        {
            "token": "hui",
            "start_offset": 0,
            "end_offset": 0,
            "type": "word",
            "position": 8
        }
    ]
}

拼音分詞插件就這樣安裝成功了

使用IK和拼音插件(詳細使用可以查看Github的文檔)

  • 創(chuàng)建Index奢讨,拼音分詞過濾
PUT /book
{
    "settings": {
        "analysis": {
            "analyzer": {
                "pinyin_analyzer": {
                    "tokenizer": "my_pinyin"
                }
            },
            "tokenizer": {
                "my_pinyin": {
                    "type": "pinyin",
                    "keep_separate_first_letter": false,
                    "keep_full_pinyin": true,
                    "keep_original": true,
                    "limit_first_letter_length": 16,
                    "lowercase": true,
                    "remove_duplicated_term": true
                }
            }
        }
    }
}

返回

{
    "acknowledged": true,
    "shards_acknowledged": true,
    "index": "book"
}
  • 創(chuàng)建Mapping,屬性使用過濾焰薄,name開啟拼音分詞拿诸,content開啟IK分詞,describe開啟拼音加IK分詞
POST /book/_mapping
{
    "properties": {
        "name": {
            "type": "keyword",
            "fields": {
                "pinyin": {
                    "type": "text",
                    "store": false,
                    "term_vector": "with_offsets",
                    "analyzer": "pinyin_analyzer",
                    "boost": 10
                }
            }
        },
        "content": {
            "type": "text",
            "analyzer": "ik_max_word",
            "search_analyzer": "ik_smart"
        },
        "describe": {
            "type": "text",
            "analyzer": "ik_max_word",
            "search_analyzer": "ik_smart",
            "fields": {
                "pinyin": {
                    "type": "text",
                    "store": false,
                    "term_vector": "with_offsets",
                    "analyzer": "pinyin_analyzer",
                    "boost": 10
                }
            }
        },
        "id": {
            "type": "long"
        }
    }
}

返回

{
    "acknowledged": true
}

這樣Index以及屬性分詞就開啟了

注:搜索時塞茅,先查看被搜索的詞被分析成什么樣的數(shù)據(jù)亩码,如果你搜索該詞輸入沒有被分析出的參數(shù)時,是查不到的R笆荨C韫怠飒泻!
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市吏廉,隨后出現(xiàn)的幾起案子泞遗,更是在濱河造成了極大的恐慌,老刑警劉巖席覆,帶你破解...
    沈念sama閱讀 212,294評論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件史辙,死亡現(xiàn)場離奇詭異,居然都是意外死亡娜睛,警方通過查閱死者的電腦和手機髓霞,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,493評論 3 385
  • 文/潘曉璐 我一進店門卦睹,熙熙樓的掌柜王于貴愁眉苦臉地迎上來畦戒,“玉大人,你說我怎么就攤上這事结序≌险” “怎么了?”我有些...
    開封第一講書人閱讀 157,790評論 0 348
  • 文/不壞的土叔 我叫張陵徐鹤,是天一觀的道長垃环。 經常有香客問我,道長返敬,這世上最難降的妖魔是什么遂庄? 我笑而不...
    開封第一講書人閱讀 56,595評論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮劲赠,結果婚禮上涛目,老公的妹妹穿的比我還像新娘。我一直安慰自己凛澎,他們只是感情好霹肝,可當我...
    茶點故事閱讀 65,718評論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著塑煎,像睡著了一般沫换。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上最铁,一...
    開封第一講書人閱讀 49,906評論 1 290
  • 那天讯赏,我揣著相機與錄音,去河邊找鬼冷尉。 笑死漱挎,一個胖子當著我的面吹牛,可吹牛的內容都是我干的网严。 我是一名探鬼主播识樱,決...
    沈念sama閱讀 39,053評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了怜庸?” 一聲冷哼從身側響起当犯,我...
    開封第一講書人閱讀 37,797評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎割疾,沒想到半個月后嚎卫,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經...
    沈念sama閱讀 44,250評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡宏榕,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,570評論 2 327
  • 正文 我和宋清朗相戀三年拓诸,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,711評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖璃诀,靈堂內的尸體忽然破棺而出高蜂,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 34,388評論 4 332
  • 正文 年R本政府宣布,位于F島的核電站,受9級特大地震影響尔崔,放射性物質發(fā)生泄漏。R本人自食惡果不足惜褥民,卻給世界環(huán)境...
    茶點故事閱讀 40,018評論 3 316
  • 文/蒙蒙 一季春、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧消返,春花似錦载弄、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,796評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至秦驯,卻和暖如春尺碰,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背译隘。 一陣腳步聲響...
    開封第一講書人閱讀 32,023評論 1 266
  • 我被黑心中介騙來泰國打工亲桥, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人固耘。 一個月前我還...
    沈念sama閱讀 46,461評論 2 360
  • 正文 我出身青樓题篷,卻偏偏與公主長得像,于是被迫代替她去往敵國和親厅目。 傳聞我的和親對象是個殘疾皇子番枚,可洞房花燭夜當晚...
    茶點故事閱讀 43,595評論 2 350

推薦閱讀更多精彩內容