Hello!
I am new to SOLR. This is my field type definition:
> 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.
n Sun, Apr 14, 2019 at 2:41 AM Kumaresh AK
> wrote:
>
> > Hello!
> > I am new to SOLR. This is my field type definition:
> >
> > > > > stored="true" multiValued="true" omitTermFreqAndPositions="true"
> > > omitNorms=&qu
5:29 AM Mikhail Khludnev wrote:
> Btw, can it be done by highlighting?
>
> On Sun, Apr 14, 2019 at 3:22 PM Kumaresh AK
> wrote:
>
> > Hi Mikhail,
> > Thanks for the response. I see the results have the details I am looking
> > for. But it is not well structured.
> Edwin
>
> On Mon, 15 Apr 2019 at 05:53, Kumaresh AK wrote:
>
> > How would I go about change by field type to facilitate highlighting ? I
> > tried hl on my current schema and the highlight section is empty. I
> guess I
> > need to change to multivalue tex
Hello!
I see two ways to get metrics from solr: jmx and metrics API. Is there a
preference to use one over the other ?
Regards,
Kumaresh
Thanks Erick.
> On Apr 29, 2019, at 5:23 AM, Erick Erickson wrote:
>
> The metrics API is probably preferred if for no other reason than JMX needs
> some work with your admins to insure the security is set up properly.
>
>> On Apr 28, 2019, at 4:56 PM, Kumaresh AK wrote:
Hello Solr Community!
*Problem*: I wish to know if the result document matched all the terms in
the query. The ranking used in solr works most of the time. For some cases
where one of the term is rare and occurs in couple of fields; such
documents trump a document which matches all the terms. Idea