2015-08-06 11:24:29 -04:00
|
|
|
|
[[similarity]]
|
|
|
|
|
=== `similarity`
|
|
|
|
|
|
|
|
|
|
Elasticsearch allows you to configure a scoring algorithm or _similarity_ per
|
|
|
|
|
field. The `similarity` setting provides a simple way of choosing a similarity
|
|
|
|
|
algorithm other than the default TF/IDF, such as `BM25`.
|
|
|
|
|
|
2016-03-18 12:01:27 -04:00
|
|
|
|
Similarities are mostly useful for <<text,`text`>> fields, but can also apply
|
|
|
|
|
to other field types.
|
2015-08-06 11:24:29 -04:00
|
|
|
|
|
2016-01-20 03:32:51 -05:00
|
|
|
|
Custom similarities can be configured by tuning the parameters of the built-in
|
2015-08-06 11:24:29 -04:00
|
|
|
|
similarities. For more details about this expert options, see the
|
|
|
|
|
<<index-modules-similarity,similarity module>>.
|
|
|
|
|
|
|
|
|
|
The only similarities which can be used out of the box, without any further
|
|
|
|
|
configuration are:
|
|
|
|
|
|
|
|
|
|
`BM25`::
|
2016-10-27 04:32:01 -04:00
|
|
|
|
The Okapi BM25 algorithm. The algorithm used by default in Elasticsearch and Lucene.
|
2016-02-09 05:07:32 -05:00
|
|
|
|
See {defguide}/pluggable-similarites.html[Pluggable Similarity Algorithms]
|
2015-08-06 11:24:29 -04:00
|
|
|
|
for more information.
|
|
|
|
|
|
2016-10-27 04:32:01 -04:00
|
|
|
|
`classic`::
|
|
|
|
|
The TF/IDF algorithm which used to be the default in Elasticsearch and
|
|
|
|
|
Lucene. See {defguide}/practical-scoring-function.html[Lucene’s Practical Scoring Function]
|
|
|
|
|
for more information.
|
|
|
|
|
|
2015-08-06 11:24:29 -04:00
|
|
|
|
|
|
|
|
|
The `similarity` can be set on the field level when a field is first created,
|
|
|
|
|
as follows:
|
|
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
|
--------------------------------------------------
|
|
|
|
|
PUT my_index
|
|
|
|
|
{
|
|
|
|
|
"mappings": {
|
|
|
|
|
"my_type": {
|
|
|
|
|
"properties": {
|
|
|
|
|
"default_field": { <1>
|
2016-03-18 12:01:27 -04:00
|
|
|
|
"type": "text"
|
2015-08-06 11:24:29 -04:00
|
|
|
|
},
|
2016-10-27 04:32:01 -04:00
|
|
|
|
"classic_field": {
|
2016-03-18 12:01:27 -04:00
|
|
|
|
"type": "text",
|
2016-10-27 04:32:01 -04:00
|
|
|
|
"similarity": "classic" <2>
|
2015-08-06 11:24:29 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
--------------------------------------------------
|
2016-05-09 09:42:23 -04:00
|
|
|
|
// CONSOLE
|
2016-10-27 04:32:01 -04:00
|
|
|
|
<1> The `default_field` uses the `BM25` similarity.
|
|
|
|
|
<2> The `classic_field` uses the `classic` similarity (ie TF/IDF).
|