Hello!
I am new to SOLR. This is my field type definition:

> <fieldType name="myid_type" class="solr.StrField" indexed="true"
> stored="true" multiValued="true" omitTermFreqAndPositions="true"
> omitNorms="true" />


One use-case we have is to lookup multiple myid with an OR like

> fq=myid:(1 2 3 4..)

I wish to know which entry in the fq matched this document. I am doing a
group query now as a hack. like:

> "group.query":["myid:1", "myid:2",...]

Is there a better way to do this ?

Regards,
Kumaresh

Reply via email to