你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
ciaohi
赞同来自:
ting44
森 - Elasticsearch,php
GET /_search { "query": { "nested": { "path": "comments", "filter": { "range": { "comments.date": { "gte": "2014-10-01", "lt": "2014-11-01" } } } } }, "sort": { "comments.stars": { "order": "asc", "mode": "min", "nested_filter": { "range": { "comments.date": { "gte": "2014-10-01", "lt": "2014-11-01" } } } } } }
chenygs
GET /index1,index2/_search { "_source": [ "id", "siteType", "publishDate", "offDate", "isShow", "status", "infoDetail.title", "infoDetail.subtitle", "infoDetail.fullTitle", "infoDetail.metaDescription", "infoAuthors.id", "infoAuthors.author.id", "infoAuthors.author.authorname", "infoAttributes.id", "infoAttributes.attribute.id", "infoAttributes.attribute.siteType", "infoAttributes.attribute.nodeId", "infoAttributes.attribute.type", "infoAttributes.attribute.name", "infoTags.id", "infoTags.tagIndex", "infoTags.tag.id", "infoTags.tag.name", "infoClobs.id", "infoClobs.key", "nickName" ], "query": { "bool": { "should": [ { "bool": { "must": [ { "range": { "publishDate": { "lte": "now" } } }, { "term": { "isShow": "T" } }, { "term": { "status": "A" } } ], "should": [ { "nested": { "path": "infoDetail", "query": { "multi_match": { "query": "脑室心房分流术病例分享", "fields": [ "infoDetail.title^2.0", "infoDetail.subtitle^1.2", "infoDetail.fullTitle^1.2", "infoDetail.metaDescription^1.2" ] } } } } ] } }, { "multi_match": { "query": "脑室心房分流术病例分享", "fields": [ "nickName^2.1" ] } } ] } }, "from": 0, "size": 10 }
要回复问题请先登录或注册
4 个回复
ciaohi
赞同来自:
ting44
赞同来自:
森 - Elasticsearch,php
赞同来自:
chenygs
赞同来自: