On 7/4/2019 9:14 AM, Prince Manohar wrote:
I am using Solr version *6.4.2*. I got your answers.I have another question. Can we use a *Range query* on point field? I am trying to do something like *fq=abc.pqr_d:[ 1500 TO 2000 ]* Is it a valid filter?
Yes. In fact, range queries are one of the areas where Point fields are faster than Trie fields.
Something that Point fields do slower than Trie is a simple value lookup. A query like this:
abc.pqr_d:5000 Thanks, Shawn