diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index 2043481bd8c..c3b90453f46 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -662,6 +662,9 @@ Upgrading from Solr 6.x ---------------------- * All Trie* numeric and date field types have been deprecated in favor of *Point field types. + Point field types are better at range queries (speed, memory, disk), however simple field:value queries underperform + relative to Trie. Either accept this, or continue to use Trie fields. + This shortcoming may be addressed in a future release. * The default response type is now JSON ("wt=json") instead of XML, and line indentation is now on by default ("indent=on"). If you expect the responses to your queries to be returned in the previous format (XML diff --git a/solr/solr-ref-guide/src/field-types-included-with-solr.adoc b/solr/solr-ref-guide/src/field-types-included-with-solr.adoc index 3c4e613c9fe..66217ec29c8 100644 --- a/solr/solr-ref-guide/src/field-types-included-with-solr.adoc +++ b/solr/solr-ref-guide/src/field-types-included-with-solr.adoc @@ -87,3 +87,8 @@ Configuration and usage of PreAnalyzedField is documented in the section <