1 Star 1 Fork 0

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

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
search_queries_fsq_score_funcs.go 19.34 KB
一键复制 编辑 原始数据 按行查看 历史
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627
// 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
import (
"strings"
)
// ScoreFunction is used in combination with the Function Score Query.
type ScoreFunction interface {
Name() string
GetWeight() *float64 // returns the weight which must be serialized at the level of FunctionScoreQuery
Source() interface{}
}
// -- Exponential Decay --
// ExponentialDecayFunction builds an exponential decay score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html
// for details.
type ExponentialDecayFunction struct {
fieldName string
origin interface{}
scale interface{}
decay *float64
offset interface{}
multiValueMode string
weight *float64
}
// NewExponentialDecayFunction creates a new ExponentialDecayFunction.
func NewExponentialDecayFunction() ExponentialDecayFunction {
return ExponentialDecayFunction{}
}
// Name represents the JSON field name under which the output of Source
// needs to be serialized by FunctionScoreQuery (see FunctionScoreQuery.Source).
func (fn ExponentialDecayFunction) Name() string {
return "exp"
}
// FieldName specifies the name of the field to which this decay function is applied to.
func (fn ExponentialDecayFunction) FieldName(fieldName string) ExponentialDecayFunction {
fn.fieldName = fieldName
return fn
}
// Origin defines the "central point" by which the decay function calculates
// "distance".
func (fn ExponentialDecayFunction) Origin(origin interface{}) ExponentialDecayFunction {
fn.origin = origin
return fn
}
// Scale defines the scale to be used with Decay.
func (fn ExponentialDecayFunction) Scale(scale interface{}) ExponentialDecayFunction {
fn.scale = scale
return fn
}
// Decay defines how documents are scored at the distance given a Scale.
// If no decay is defined, documents at the distance Scale will be scored 0.5.
func (fn ExponentialDecayFunction) Decay(decay float64) ExponentialDecayFunction {
fn.decay = &decay
return fn
}
// Offset, if defined, computes the decay function only for a distance
// greater than the defined offset.
func (fn ExponentialDecayFunction) Offset(offset interface{}) ExponentialDecayFunction {
fn.offset = offset
return fn
}
// Weight adjusts the score of the score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_using_function_score
// for details.
func (fn ExponentialDecayFunction) Weight(weight float64) ExponentialDecayFunction {
fn.weight = &weight
return fn
}
// GetWeight returns the adjusted score. It is part of the ScoreFunction interface.
// Returns nil if weight is not specified.
func (fn ExponentialDecayFunction) GetWeight() *float64 {
return fn.weight
}
// MultiValueMode specifies how the decay function should be calculated
// on a field that has multiple values.
// Valid modes are: min, max, avg, and sum.
func (fn ExponentialDecayFunction) MultiValueMode(mode string) ExponentialDecayFunction {
fn.multiValueMode = mode
return fn
}
// Source returns the serializable JSON data of this score function.
func (fn ExponentialDecayFunction) Source() interface{} {
source := make(map[string]interface{})
params := make(map[string]interface{})
source[fn.fieldName] = params
if fn.origin != nil {
params["origin"] = fn.origin
}
params["scale"] = fn.scale
if fn.decay != nil && *fn.decay > 0 {
params["decay"] = *fn.decay
}
if fn.offset != nil {
params["offset"] = fn.offset
}
if fn.multiValueMode != "" {
source["multi_value_mode"] = fn.multiValueMode
}
return source
}
// -- Gauss Decay --
// GaussDecayFunction builds a gauss decay score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html
// for details.
type GaussDecayFunction struct {
fieldName string
origin interface{}
scale interface{}
decay *float64
offset interface{}
multiValueMode string
weight *float64
}
// NewGaussDecayFunction returns a new GaussDecayFunction.
func NewGaussDecayFunction() GaussDecayFunction {
return GaussDecayFunction{}
}
// Name represents the JSON field name under which the output of Source
// needs to be serialized by FunctionScoreQuery (see FunctionScoreQuery.Source).
func (fn GaussDecayFunction) Name() string {
return "gauss"
}
// FieldName specifies the name of the field to which this decay function is applied to.
func (fn GaussDecayFunction) FieldName(fieldName string) GaussDecayFunction {
fn.fieldName = fieldName
return fn
}
// Origin defines the "central point" by which the decay function calculates
// "distance".
func (fn GaussDecayFunction) Origin(origin interface{}) GaussDecayFunction {
fn.origin = origin
return fn
}
// Scale defines the scale to be used with Decay.
func (fn GaussDecayFunction) Scale(scale interface{}) GaussDecayFunction {
fn.scale = scale
return fn
}
// Decay defines how documents are scored at the distance given a Scale.
// If no decay is defined, documents at the distance Scale will be scored 0.5.
func (fn GaussDecayFunction) Decay(decay float64) GaussDecayFunction {
fn.decay = &decay
return fn
}
// Offset, if defined, computes the decay function only for a distance
// greater than the defined offset.
func (fn GaussDecayFunction) Offset(offset interface{}) GaussDecayFunction {
fn.offset = offset
return fn
}
// Weight adjusts the score of the score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_using_function_score
// for details.
func (fn GaussDecayFunction) Weight(weight float64) GaussDecayFunction {
fn.weight = &weight
return fn
}
// GetWeight returns the adjusted score. It is part of the ScoreFunction interface.
// Returns nil if weight is not specified.
func (fn GaussDecayFunction) GetWeight() *float64 {
return fn.weight
}
// MultiValueMode specifies how the decay function should be calculated
// on a field that has multiple values.
// Valid modes are: min, max, avg, and sum.
func (fn GaussDecayFunction) MultiValueMode(mode string) GaussDecayFunction {
fn.multiValueMode = mode
return fn
}
// Source returns the serializable JSON data of this score function.
func (fn GaussDecayFunction) Source() interface{} {
source := make(map[string]interface{})
params := make(map[string]interface{})
source[fn.fieldName] = params
if fn.origin != nil {
params["origin"] = fn.origin
}
params["scale"] = fn.scale
if fn.decay != nil && *fn.decay > 0 {
params["decay"] = *fn.decay
}
if fn.offset != nil {
params["offset"] = fn.offset
}
if fn.multiValueMode != "" {
source["multi_value_mode"] = fn.multiValueMode
}
// Notice that the weight has to be serialized in FunctionScoreQuery.
return source
}
// -- Linear Decay --
// LinearDecayFunction builds a linear decay score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html
// for details.
type LinearDecayFunction struct {
fieldName string
origin interface{}
scale interface{}
decay *float64
offset interface{}
multiValueMode string
weight *float64
}
// NewLinearDecayFunction initializes and returns a new LinearDecayFunction.
func NewLinearDecayFunction() LinearDecayFunction {
return LinearDecayFunction{}
}
// Name represents the JSON field name under which the output of Source
// needs to be serialized by FunctionScoreQuery (see FunctionScoreQuery.Source).
func (fn LinearDecayFunction) Name() string {
return "linear"
}
// FieldName specifies the name of the field to which this decay function is applied to.
func (fn LinearDecayFunction) FieldName(fieldName string) LinearDecayFunction {
fn.fieldName = fieldName
return fn
}
// Origin defines the "central point" by which the decay function calculates
// "distance".
func (fn LinearDecayFunction) Origin(origin interface{}) LinearDecayFunction {
fn.origin = origin
return fn
}
// Scale defines the scale to be used with Decay.
func (fn LinearDecayFunction) Scale(scale interface{}) LinearDecayFunction {
fn.scale = scale
return fn
}
// Decay defines how documents are scored at the distance given a Scale.
// If no decay is defined, documents at the distance Scale will be scored 0.5.
func (fn LinearDecayFunction) Decay(decay float64) LinearDecayFunction {
fn.decay = &decay
return fn
}
// Offset, if defined, computes the decay function only for a distance
// greater than the defined offset.
func (fn LinearDecayFunction) Offset(offset interface{}) LinearDecayFunction {
fn.offset = offset
return fn
}
// Weight adjusts the score of the score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_using_function_score
// for details.
func (fn LinearDecayFunction) Weight(weight float64) LinearDecayFunction {
fn.weight = &weight
return fn
}
// GetWeight returns the adjusted score. It is part of the ScoreFunction interface.
// Returns nil if weight is not specified.
func (fn LinearDecayFunction) GetWeight() *float64 {
return fn.weight
}
// MultiValueMode specifies how the decay function should be calculated
// on a field that has multiple values.
// Valid modes are: min, max, avg, and sum.
func (fn LinearDecayFunction) MultiValueMode(mode string) LinearDecayFunction {
fn.multiValueMode = mode
return fn
}
// GetMultiValueMode returns how the decay function should be calculated
// on a field that has multiple values.
// Valid modes are: min, max, avg, and sum.
func (fn LinearDecayFunction) GetMultiValueMode() string {
return fn.multiValueMode
}
// Source returns the serializable JSON data of this score function.
func (fn LinearDecayFunction) Source() interface{} {
source := make(map[string]interface{})
params := make(map[string]interface{})
source[fn.fieldName] = params
if fn.origin != nil {
params["origin"] = fn.origin
}
params["scale"] = fn.scale
if fn.decay != nil && *fn.decay > 0 {
params["decay"] = *fn.decay
}
if fn.offset != nil {
params["offset"] = fn.offset
}
if fn.multiValueMode != "" {
source["multi_value_mode"] = fn.multiValueMode
}
// Notice that the weight has to be serialized in FunctionScoreQuery.
return source
}
// -- Script --
// ScriptFunction builds a script score function. It uses a script to
// compute or influence the score of documents that match with the inner
// query or filter.
//
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_script_score
// for details.
type ScriptFunction struct {
script string
lang string
params map[string]interface{}
weight *float64
}
// NewScriptFunction initializes and returns a new ScriptFunction.
func NewScriptFunction(script string) ScriptFunction {
return ScriptFunction{
script: script,
params: make(map[string]interface{}),
}
}
// Name represents the JSON field name under which the output of Source
// needs to be serialized by FunctionScoreQuery (see FunctionScoreQuery.Source).
func (fn ScriptFunction) Name() string {
return "script_score"
}
// Script specifies the script to be executed.
func (fn ScriptFunction) Script(script string) ScriptFunction {
fn.script = script
return fn
}
// Lang specifies the language of the Script.
func (fn ScriptFunction) Lang(lang string) ScriptFunction {
fn.lang = lang
return fn
}
// Param adds a single parameter to the script.
func (fn ScriptFunction) Param(name string, value interface{}) ScriptFunction {
fn.params[name] = value
return fn
}
// Params sets all script parameters in a single step.
func (fn ScriptFunction) Params(params map[string]interface{}) ScriptFunction {
fn.params = params
return fn
}
// Weight adjusts the score of the score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_using_function_score
// for details.
func (fn ScriptFunction) Weight(weight float64) ScriptFunction {
fn.weight = &weight
return fn
}
// GetWeight returns the adjusted score. It is part of the ScoreFunction interface.
// Returns nil if weight is not specified.
func (fn ScriptFunction) GetWeight() *float64 {
return fn.weight
}
// Source returns the serializable JSON data of this score function.
func (fn ScriptFunction) Source() interface{} {
source := make(map[string]interface{})
if fn.script != "" {
source["script"] = fn.script
}
if fn.lang != "" {
source["lang"] = fn.lang
}
if len(fn.params) > 0 {
source["params"] = fn.params
}
// Notice that the weight has to be serialized in FunctionScoreQuery.
return source
}
// -- Factor --
// FactorFunction is deprecated.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html
// for details.
type FactorFunction struct {
boostFactor *float32
}
// NewFactorFunction initializes and returns a new FactorFunction.
func NewFactorFunction() FactorFunction {
return FactorFunction{}
}
// Name represents the JSON field name under which the output of Source
// needs to be serialized by FunctionScoreQuery (see FunctionScoreQuery.Source).
func (fn FactorFunction) Name() string {
return "boost_factor"
}
// BoostFactor specifies a boost for this score function.
func (fn FactorFunction) BoostFactor(boost float32) FactorFunction {
fn.boostFactor = &boost
return fn
}
// GetWeight always returns nil for (deprecated) FactorFunction.
func (fn FactorFunction) GetWeight() *float64 {
return nil
}
// Source returns the serializable JSON data of this score function.
func (fn FactorFunction) Source() interface{} {
// Notice that the weight has to be serialized in FunctionScoreQuery.
return fn.boostFactor
}
// -- Field value factor --
// FieldValueFactorFunction is a function score function that allows you
// to use a field from a document to influence the score.
// See http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_field_value_factor.
type FieldValueFactorFunction struct {
field string
factor *float64
missing *float64
weight *float64
modifier string
}
// NewFieldValueFactorFunction initializes and returns a new FieldValueFactorFunction.
func NewFieldValueFactorFunction() FieldValueFactorFunction {
return FieldValueFactorFunction{}
}
// Name represents the JSON field name under which the output of Source
// needs to be serialized by FunctionScoreQuery (see FunctionScoreQuery.Source).
func (fn FieldValueFactorFunction) Name() string {
return "field_value_factor"
}
// Field is the field to be extracted from the document.
func (fn FieldValueFactorFunction) Field(field string) FieldValueFactorFunction {
fn.field = field
return fn
}
// Factor is the (optional) factor to multiply the field with. If you do not
// specify a factor, the default is 1.
func (fn FieldValueFactorFunction) Factor(factor float64) FieldValueFactorFunction {
fn.factor = &factor
return fn
}
// Modifier to apply to the field value. It can be one of: none, log, log1p,
// log2p, ln, ln1p, ln2p, square, sqrt, or reciprocal. Defaults to: none.
func (fn FieldValueFactorFunction) Modifier(modifier string) FieldValueFactorFunction {
fn.modifier = modifier
return fn
}
// Weight adjusts the score of the score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_using_function_score
// for details.
func (fn FieldValueFactorFunction) Weight(weight float64) FieldValueFactorFunction {
fn.weight = &weight
return fn
}
// GetWeight returns the adjusted score. It is part of the ScoreFunction interface.
// Returns nil if weight is not specified.
func (fn FieldValueFactorFunction) GetWeight() *float64 {
return fn.weight
}
// Missing is used if a document does not have that field.
func (fn FieldValueFactorFunction) Missing(missing float64) FieldValueFactorFunction {
fn.missing = &missing
return fn
}
// Source returns the serializable JSON data of this score function.
func (fn FieldValueFactorFunction) Source() interface{} {
source := make(map[string]interface{})
if fn.field != "" {
source["field"] = fn.field
}
if fn.factor != nil {
source["factor"] = *fn.factor
}
if fn.missing != nil {
source["missing"] = *fn.missing
}
if fn.modifier != "" {
source["modifier"] = strings.ToLower(fn.modifier)
}
// Notice that the weight has to be serialized in FunctionScoreQuery.
return source
}
// -- Weight Factor --
// WeightFactorFunction builds a weight factor function that multiplies
// the weight to the score.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_weight
// for details.
type WeightFactorFunction struct {
weight float64
}
// NewWeightFactorFunction initializes and returns a new WeightFactorFunction.
func NewWeightFactorFunction(weight float64) WeightFactorFunction {
return WeightFactorFunction{weight: weight}
}
// Name represents the JSON field name under which the output of Source
// needs to be serialized by FunctionScoreQuery (see FunctionScoreQuery.Source).
func (fn WeightFactorFunction) Name() string {
return "weight"
}
// Weight adjusts the score of the score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_using_function_score
// for details.
func (fn WeightFactorFunction) Weight(weight float64) WeightFactorFunction {
fn.weight = weight
return fn
}
// GetWeight returns the adjusted score. It is part of the ScoreFunction interface.
// Returns nil if weight is not specified.
func (fn WeightFactorFunction) GetWeight() *float64 {
return &fn.weight
}
// Source returns the serializable JSON data of this score function.
func (fn WeightFactorFunction) Source() interface{} {
// Notice that the weight has to be serialized in FunctionScoreQuery.
return fn.weight
}
// -- Random --
// RandomFunction builds a random score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_random
// for details.
type RandomFunction struct {
seed interface{}
weight *float64
}
// NewRandomFunction initializes and returns a new RandomFunction.
func NewRandomFunction() RandomFunction {
return RandomFunction{}
}
// Name represents the JSON field name under which the output of Source
// needs to be serialized by FunctionScoreQuery (see FunctionScoreQuery.Source).
func (fn RandomFunction) Name() string {
return "random_score"
}
// Seed is documented in 1.6 as a numeric value. However, in the source code
// of the Java client, it also accepts strings. So we accept both here, too.
func (fn RandomFunction) Seed(seed interface{}) RandomFunction {
fn.seed = seed
return fn
}
// Weight adjusts the score of the score function.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#_using_function_score
// for details.
func (fn RandomFunction) Weight(weight float64) RandomFunction {
fn.weight = &weight
return fn
}
// GetWeight returns the adjusted score. It is part of the ScoreFunction interface.
// Returns nil if weight is not specified.
func (fn RandomFunction) GetWeight() *float64 {
return fn.weight
}
// Source returns the serializable JSON data of this score function.
func (fn RandomFunction) Source() interface{} {
source := make(map[string]interface{})
if fn.seed != nil {
source["seed"] = fn.seed
}
// Notice that the weight has to be serialized in FunctionScoreQuery.
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.58

搜索帮助

344bd9b3 5694891 D2dac590 5694891