|
|
##yohomars-search 接口说明。
|
|
|
|
|
|
服务地址:
|
|
|
http://192.168.102.17:8087/yohomars-search
|
|
|
|
|
|
搜索接口:
|
|
|
http://192.168.102.17:8087/yohomars-search/search.json
|
|
|
联想接口:
|
|
|
http://192.168.102.17:8087/yohomars-search/suggest.json
|
|
|
|
|
|
|
|
|
指定索引参数(必传)
|
|
|
参数名: type
|
|
|
|类型|参数值|
|
|
|
|---|---|---|
|
|
|
|商圈 |bizarea|
|
|
|
|店铺 |store|
|
|
|
|线路 |line|
|
|
|
|主题| topic|
|
|
|
|评论 |comment|
|
|
|
|
|
|
###店铺:store
|
|
|
索引字段
|
|
|
|名称|存储类型|描述
|
|
|
|---|---|---|
|
|
|
|id|int|id|
|
|
|
|city_id|int|城市标识|
|
|
|
|bizId|int|商圈标识|
|
|
|
|recommend_time|int|推荐时间|
|
|
|
|order_by|int|排序|
|
|
|
|consumption|int|消费量|
|
|
|
|score|int|分数|
|
|
|
|assessment_num|int|评价数量|
|
|
|
|sort|int|分类|
|
|
|
|pin|string|地理位置坐标|
|
|
|
|latitude|int|纬度|
|
|
|
|longitude|int|精度|
|
|
|
|store_name|string|店铺名称|
|
|
|
|store_english_name|string|店铺名称英文|
|
|
|
|store_name_tc|string|店铺名称繁体|
|
|
|
|tags|string|标签|
|
|
|
|store_first|string|综合的查询字段|
|
|
|
|des|string|描述|
|
|
|
|suggest|string|用于搜索栏联想的字段|
|
|
|
|
|
|
|
|
|
####查询所有:
|
|
|
http://192.168.102.17:8087/yohomars-search/search.json?type=store
|
|
|
|
|
|
####查询:
|
|
|
```
|
|
|
格式:query=keyword
|
|
|
```
|
|
|
默认查询字段:索引中的string字段
|
|
|
指定查询字段:
|
|
|
```
|
|
|
格式 queryField=field1,field2
|
|
|
```
|
|
|
地理位置范围查询:
|
|
|
&longitude=-1&latitude=0.7&range_start=0&range_end=1000000
|
|
|
|
|
|
####过滤:
|
|
|
```
|
|
|
格式: fieldname=value
|
|
|
```
|
|
|
field:所有int类型字段
|
|
|
|
|
|
####排序:
|
|
|
```
|
|
|
格式: order=param1:param2
|
|
|
```
|
|
|
param1: 所有int类型字段:
|
|
|
param2:asc:增序 desc:降序
|
|
|
|
|
|
####返回字段:
|
|
|
默认:返回所有字段
|
|
|
返回指定字段:
|
|
|
```
|
|
|
格式 returnField=field1,field2
|
|
|
```
|
|
|
|
|
|
####返回数据结构
|
|
|
```
|
|
|
{
|
|
|
"code": 200,
|
|
|
"status": 0,
|
|
|
"time": 23,
|
|
|
"matches": {
|
|
|
"total": 21,
|
|
|
"page": 1,
|
|
|
"Total_page": 3,
|
|
|
"data": [
|
|
|
{
|
|
|
"217": {
|
|
|
"store_first": "餐厅 餐廳12 衡山路 衡山路 Hengshan Lu 岳阳路1号(教育会堂内)",
|
|
|
"latitude": 0.5447998659809271,
|
|
|
"consumption": 750,
|
|
|
"assessment_num": 0,
|
|
|
"sort": 99999,
|
|
|
"suggest": " 洋房火锅",
|
|
|
"store_name_tc": "洋房火鍋",
|
|
|
"tags": 7,
|
|
|
"score": 5,
|
|
|
"store_english_name": "",
|
|
|
"des": "xxx",
|
|
|
"pin": {
|
|
|
"location": [
|
|
|
2.1198505724539,
|
|
|
0.5447998659809271
|
|
|
]
|
|
|
},
|
|
|
"is_recommend": 0,
|
|
|
"bizId": 32,
|
|
|
"store_name": "洋房火锅",
|
|
|
"order_by": 999999,
|
|
|
"id": 217,
|
|
|
"city_id": 890,
|
|
|
"longitude": 2.1198505724539
|
|
|
},
|
|
|
"288": {
|
|
|
"store_first": "餐厅 餐廳12 墨田区 墨田區 Sumida 横川2-14-5 橫川2-14-5",
|
|
|
"latitude": 0.6231134265630897,
|
|
|
```
|
|
|
|
|
|
|
|
|
####联想:
|
|
|
http://192.168.102.17:8087/yohomars-search/suggest.json?type=bizarea&query=联想词
|
|
|
|
|
|
|
|
|
####返回数据结构
|
|
|
```
|
|
|
{
|
|
|
"code": 200,
|
|
|
"status": 0,
|
|
|
"time": 10,
|
|
|
"matches": {
|
|
|
"total": 5,
|
|
|
"page": 1,
|
|
|
"Total_page": 1,
|
|
|
"data": [
|
|
|
{
|
|
|
"217": {
|
|
|
"suggest": " 洋房火锅"
|
|
|
},
|
|
|
"419": {
|
|
|
"suggest": " 辉哥火锅 巨鹿路店"
|
|
|
},
|
|
|
"652": {
|
|
|
"suggest": "Mr. Meat 肉大人肉铺火锅"
|
|
|
},
|
|
|
"948": {
|
|
|
"suggest": " 夫妻肺片之味位火锅"
|
|
|
},
|
|
|
"950": {
|
|
|
"suggest": " 花开藤蔓火锅"
|
|
|
}
|
|
|
}
|
|
|
]
|
|
|
}
|
|
|
}
|
|
|
```
|
|
|
|
|
|
###商圈
|
|
|
|
|
|
索引字段
|
|
|
|名称|存储类型|描述
|
|
|
|---|---|---|
|
|
|
|id|int|id|
|
|
|
|name|string|名称|
|
|
|
|english_name|string|英文名称|
|
|
|
|name_tc|string|繁体名称|
|
|
|
|des|string|描述|
|
|
|
|city_id|int|城市标志|
|
|
|
|store_num|int|店铺数量|
|
|
|
|is_top|int|是否置顶|
|
|
|
|top_time|int|置顶时间|
|
|
|
|is_recommend|int|推荐|
|
|
|
|sort|int|分类|
|
|
|
|recommend_time|int|推荐时间|
|
|
|
|suggest|string|联想字段|
|
|
|
|
|
|
####查询所有:
|
|
|
http://192.168.102.17:8087/yohomars-search/search.json?type=bizarea
|
|
|
|
|
|
其他同店铺
|
|
|
|
|
|
###线路
|
|
|
|
|
|
索引字段
|
|
|
|名称|存储类型|描述
|
|
|
|---|---|---|
|
|
|
|id|int|id|
|
|
|
|title|string|线路名称|
|
|
|
|title_tc|string|线路繁体名称|
|
|
|
|is_top|int|是否置顶|
|
|
|
|top_time|int|置顶时间|
|
|
|
|city_id|int|城市标志|
|
|
|
|publish_time|int|发布时间|
|
|
|
|city_id|int|城市标示|
|
|
|
|description|string|描述|
|
|
|
|description_tc|string|描述繁体|
|
|
|
|is_recommend|int|推荐|
|
|
|
|recommend_time|int|推荐时间|
|
|
|
|sort|int|分类|
|
|
|
|suggest|string|联想字段|
|
|
|
|
|
|
####查询所有:
|
|
|
http://192.168.102.17:8087/yohomars-search/search.json?type=line
|
|
|
其他同店铺
|
|
|
|
|
|
###主题
|
|
|
|
|
|
索引字段
|
|
|
|名称|存储类型|描述
|
|
|
|---|---|---|
|
|
|
|id|int|id|
|
|
|
|title|string|主题名称|
|
|
|
|title_tc|string|主题繁体名称|
|
|
|
|is_top|int|是否置顶|
|
|
|
|top_time|int|置顶时间|
|
|
|
|city_id|int|城市标志|
|
|
|
|publish_time|int|发布时间|
|
|
|
|city_id|int|城市标示|
|
|
|
|description|string|描述|
|
|
|
|description_tc|string|描述繁体|
|
|
|
|is_recommend|int|推荐|
|
|
|
|recommend_time|int|推荐时间|
|
|
|
|sort|int|分类|
|
|
|
|suggest|string|联想字段|
|
|
|
|
|
|
####查询所有:
|
|
|
http://192.168.102.17:8087/yohomars-search/search.json?type=topic
|
|
|
其他同店铺
|
|
|
|
|
|
|
|
|
###评论
|
|
|
|
|
|
索引字段
|
|
|
|名称|存储类型|描述
|
|
|
|---|---|---|
|
|
|
|id|int|id|
|
|
|
|uid|int|用户标识|
|
|
|
|description|string|描述|
|
|
|
|user_auth|int|user_auth|
|
|
|
|city_id|int|城市标示|
|
|
|
|user_type|int|用户类型|
|
|
|
|store_id|int|店铺标识|
|
|
|
|bizId|int|商圈标识|
|
|
|
|publish_time|int|发布时间|
|
|
|
|is_top|int|置顶|
|
|
|
|top_time|int|置顶时间|
|
|
|
|is_deleted|int|删除|
|
|
|
|
|
|
####查询所有:
|
|
|
http://192.168.102.17:8087/yohomars-search/search.json?type=comment
|
|
|
其他同店铺
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
...
|
...
|
|