isearch/docs/API.md

3.4 KiB
Raw Blame History

检索服务接口列表

关键词搜索


接口描述

对用户输入的关键词进行相关结果的搜索匹配,搜索结果默认按照关键词与文档的相关性得分进行排序。

URL

http://127.0.0.1/search

Http Method

POST

Http返回格式

JSON

Http请求参数说明

参数 类型 是否必需 描述
appid int appname对应的ID
query string 搜索查询词
page_index int 页码
page_size int 每页条数
sort_type int 排序方式
sort_field string 排序字段
fields string 返回指定字段值

说明query兼容elasticsearch协议格式可参考tools/search.json文件。

应用的定义及支持的字段类型可参考:项目配置文件

Http返回结果说明

字段 类型 描述
code int 执行结果
count int 结果总数
result string 结果内容

CURL调用示例

curl -X POST \
  http://127.0.0.1/search \
  -H 'content-type: application/json' \
  -d '{"appid":10064,"query":{"match":{"author_id":"21386"}},"page_index":1,"page_size":3}'

成功返回示例

{
	"code": 0,
	"count": 2,
	"result": [{
			"doc_id": "115",
			"score": 20.395478565398534,
		},
		{
			"doc_id": "105",
			"score": 20.016650933441753,
		}
	]
}

错误返回示例

{
  "code": -1,
  "message": "keyword is required"
}

索引上报


接口描述

该接口上传记录至索引服务,生成普通索引表。

URL

http://127.0.0.1/insert

Http Method

POST

Http返回格式

JSON

Http请求参数说明

参数 类型 是否必需 描述
appid string 用户组id
table_content object 内容对象

table_content的参数

参数 类型 是否必需 描述
cmd string 操作类型
fields object 文章对象

cmd取值包括add,delete,update。

fields的参数

参数 类型 是否必需 描述
doc_id string 文章ID
weight int 文章权重
author string 文章作者
title string 文章标题
content string 文章内容

Http 返回结果说明

参数 类型 描述
code int 执行结果
message string 信息描述

CURL调用示例

curl -X POST \
  http://127.0.0.1/index/common \
  -H 'content-type: application/json' \
  -d '{
	"appid": 10001,
	"table_content": {
		"cmd": "add",
		"fields": {
			"doc_id": "28394556",
			"weight": 218,
			"author": "zhangsan",
			"title": " 京东阅读电子阅读器即将上线 ",
			"content": "今天小编得到了一个令人振奋的消息!它是什么呢?京东阅读官方即将推出搭载京东阅读客户端"
		}
	}
  }'

成功返回示例

{
  "code": 0
}