码迷,mamicode.com
首页 > 其他好文 > 详细

使用ES(elasticsearch) 搜索引擎

时间:2019-01-31 00:21:07      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:log   port   integer   imp   索引   elastics   ring   http   mysq   

介绍  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) 搜索引擎

标签:log   port   integer   imp   索引   elastics   ring   http   mysq   

原文地址:https://www.cnblogs.com/wlphp/p/10340077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!