栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

MySQL查询到ElasticSearch

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

MySQL查询到ElasticSearch

您正在使事情变得复杂,并试图在Elasticsearch中适应MySQL概念。在这种情况下,您需要正确定义索引映射(根据搜索要求来字段数据类型及其分析器),并相应地构建查询。

我已经获取了您的示例,并且没有更改索引映射和示例文档,但是更改了搜索查询以显示如何处理现有数据和需求(可能无法在所有情况下都有效,但是您有所了解)搜索。

搜索查询

{    "query": {        "multi_match": { --> note and read about multi_match query "query": "36695", "fields": [     "address",     "city_pre", --> add more fields if you need to be     "zip_pre",     "contact_no" ]        }    }}

搜索结果将带您的示例文档:

 "hits": [ {     "_index": "so_mysql_dsl",     "_type": "_doc",     "_id": "1",     "_score": 0.2876821,     "_source": {         "promotion": null,         "image": null,         "name": "Port City Realty",         "city_pre": "Mobile",         "services": null,         "promotion_exp_date": null,         "tuesdayopen": null,         "tuesdayclose": null,         "wednesdayopen": null,         "thursdayclose": null,         "@timestamp": "2020-03-13T15:44:45.330Z",         "date_updated": "2020-03-06T00:00:00.000Z",         "mondayopen": null,         "contact_no": "2516891228",         "id": 1941,         "fridayclose": null,         "featured": 0,         "main_cate": 1,         "wednesdayclose": null,         "sundayopen": null,         "state_pre": "AL",         "video": null,         "address": "4826 Whispering Oaks Lane",         "user_id": null,         "slug": "2516891228-port-city-realty-mobile-al-36695",         "timezone": null,         "source": "USA Business",         "description": null,         "fridayopen": null,         "price": null,         "saturdayopen": null,         "saturdayclose": null,         "date_added": "2020-03-05T19:00:00.000Z",         "thursdayopen": null,         "@version": "1",         "status": 1,         "mondayclose": null,         "zip_pre": "36695",         "private_contact": null,         "location_id": 0,         "sundayclose": null     } }        ]


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/372425.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号