使用ES(elasticsearch) 搜索引擎
阿新 • • 發佈:2019-01-31
per ref 索引 條件 asc bool tar color 創建
介紹 https://blog.csdn.net/andyzhaojianhui/article/details/75195296
創建語句
{ "company":{ "properties":{ "company_name":{ "type":"string", "index":"not_analyzed" }, "company_id":{ "type":"integer", "fields":{"sort":{ "type":"integer", "index":"not_analyzed" } } } } } }
搜索條件
{ "from": 0, "size": 200, "query": { "bool": { "must": { "wildcard": { "company_name": "*盤石*" } } } },"size":100, "sort":[ { "company_id" : "asc" }] }
批量從Mysql 添加到索引 Python實現
https://gitee.com/bandung/PythonImportes.git
開箱即用的安裝
https://code.aliyun.com/yymmhh/es_search.git
!!
使用ES(elasticsearch) 搜索引擎