1 Star 1 Fork 0

宇宙蒙面侠X/github.com-olivere-elastic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
search_queries_term.go 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
// Copyright 2012-2015 Oliver Eilhard. All rights reserved.
// Use of this source code is governed by a MIT-license.
// See http://olivere.mit-license.org/license.txt for details.
package elastic
// A term query matches documents that contain
// a term (not analyzed). For more details, see
// http://www.elasticsearch.org/guide/reference/query-dsl/term-query.html
type TermQuery struct {
Query
name string
value interface{}
boost *float32
queryName string
}
// Creates a new term query.
func NewTermQuery(name string, value interface{}) TermQuery {
t := TermQuery{name: name, value: value}
return t
}
func (q TermQuery) Boost(boost float32) TermQuery {
q.boost = &boost
return q
}
func (q TermQuery) QueryName(queryName string) TermQuery {
q.queryName = queryName
return q
}
// Creates the query source for the term query.
func (q TermQuery) Source() interface{} {
// {"term":{"name":"value"}}
source := make(map[string]interface{})
tq := make(map[string]interface{})
source["term"] = tq
if q.boost == nil && q.queryName == "" {
tq[q.name] = q.value
} else {
subQ := make(map[string]interface{})
subQ["value"] = q.value
if q.boost != nil {
subQ["boost"] = *q.boost
}
if q.queryName != "" {
subQ["_name"] = q.queryName
}
tq[q.name] = subQ
}
return source
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/awol2010ex/github.com-olivere-elastic.git
git@gitee.com:awol2010ex/github.com-olivere-elastic.git
awol2010ex
github.com-olivere-elastic
github.com-olivere-elastic
v2.0.0

搜索帮助