1 Star 1 Fork 0

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
search_filters_term.go 1.31 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
// Filters documents that have fields that contain
// a term (not analyzed). For details, see:
// http://www.elasticsearch.org/guide/reference/query-dsl/term-filter.html
type TermFilter struct {
Filter
name string
value interface{}
cache *bool
cacheKey string
filterName string
}
func NewTermFilter(name string, value interface{}) TermFilter {
f := TermFilter{name: name, value: value}
return f
}
func (f TermFilter) Cache(cache bool) TermFilter {
f.cache = &cache
return f
}
func (f TermFilter) CacheKey(cacheKey string) TermFilter {
f.cacheKey = cacheKey
return f
}
func (f TermFilter) FilterName(filterName string) TermFilter {
f.filterName = filterName
return f
}
func (f TermFilter) Source() interface{} {
// {
// "term" : {
// "..." : "..."
// }
// }
source := make(map[string]interface{})
params := make(map[string]interface{})
source["term"] = params
params[f.name] = f.value
if f.filterName != "" {
params["_name"] = f.filterName
}
if f.cache != nil {
params["_cache"] = *f.cache
}
if f.cacheKey != "" {
params["_cache_key"] = f.cacheKey
}
return source
}
Loading...
马建仓 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.7

搜索帮助