mirror of https://github.com/apache/lucene.git
SOLR-10963: Fix example json in MultipleAdditiveTreesModel javadocs. (Stefan Langenmaier via Christine Poerschke)
This commit is contained in:
parent
e4d0bb7dc4
commit
9c75c8082d
|
@ -464,6 +464,9 @@ Bug Fixes
|
||||||
* SOLR-10824: fix NPE ExactSharedStatsCache, fixing maxdocs skew for terms which are absent at one of shards
|
* SOLR-10824: fix NPE ExactSharedStatsCache, fixing maxdocs skew for terms which are absent at one of shards
|
||||||
when using one of Exact*StatsCache (Mikhail Khludnev)
|
when using one of Exact*StatsCache (Mikhail Khludnev)
|
||||||
|
|
||||||
|
* SOLR-10963: Fix example json in MultipleAdditiveTreesModel javadocs.
|
||||||
|
(Stefan Langenmaier via Christine Poerschke)
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
----------------------
|
----------------------
|
||||||
* SOLR-10634: JSON Facet API: When a field/terms facet will retrieve all buckets (i.e. limit:-1)
|
* SOLR-10634: JSON Facet API: When a field/terms facet will retrieve all buckets (i.e. limit:-1)
|
||||||
|
|
|
@ -42,29 +42,29 @@ import org.apache.solr.util.SolrPluginUtils;
|
||||||
"params" : {
|
"params" : {
|
||||||
"trees" : [
|
"trees" : [
|
||||||
{
|
{
|
||||||
"weight" : 1,
|
"weight" : "1",
|
||||||
"root": {
|
"root": {
|
||||||
"feature" : "userTextTitleMatch",
|
"feature" : "userTextTitleMatch",
|
||||||
"threshold" : 0.5,
|
"threshold" : "0.5",
|
||||||
"left" : {
|
"left" : {
|
||||||
"value" : -100
|
"value" : "-100"
|
||||||
},
|
},
|
||||||
"right" : {
|
"right" : {
|
||||||
"feature" : "originalScore",
|
"feature" : "originalScore",
|
||||||
"threshold" : 10.0,
|
"threshold" : "10.0",
|
||||||
"left" : {
|
"left" : {
|
||||||
"value" : 50
|
"value" : "50"
|
||||||
},
|
},
|
||||||
"right" : {
|
"right" : {
|
||||||
"value" : 75
|
"value" : "75"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"weight" : 2,
|
"weight" : "2",
|
||||||
"root" : {
|
"root" : {
|
||||||
"value" : -10
|
"value" : "-10"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue