RE: how to add multiple value for a filter query in Solrj

2020-03-24 Thread Raboah, Avi
You can do something like that if we are talking on the same filter query name.

addFilterQuery(String.format("%s:(%s %s)", filterName, value1, value2));


-Original Message-
From: Szűcs Roland 
Sent: Tuesday, March 24, 2020 11:35 AM
To: solr-user@lucene.apache.org
Subject: how to add multiple value for a filter query in Solrj

Hi All,

I use Solr 8.4.1 and the latest solrj client.
There is a field let's which can have 3 different values. If I use the admin 
UI, I write to the fq the following: filterName:"value1"
filterName:"value2" and it is working as expected.
If I use solrJ SolrQuery.addFilterQuery method and call it twice like:
addFilterQuery(filterName+":\""+value1+"\"");
addFilterQuery(filterName+":\""+value2+"\"");
I got no any document back.

Can somebody help me what syntax is appropriate with solrj to add filter 
queries one by one if there is one filter field but multiple values?

Thanks,

Roland


This electronic message may contain proprietary and confidential information of 
Verint Systems Inc., its affiliates and/or subsidiaries. The information is 
intended to be for the use of the individual(s) or entity(ies) named above. If 
you are not the intended recipient (or authorized to receive this e-mail for 
the intended recipient), you may not use, copy, disclose or distribute to 
anyone this message or any information contained in this message. If you have 
received this electronic message in error, please notify us by replying to this 
e-mail.


Luke admin API return inconsistent result

2020-10-01 Thread Raboah, Avi
Hi All,

We are using the Luke API in order to get all dynamic field names from our 
collection:
/solr/collection/admin/luke?wt=csv&numTerms=0

This worked fine in 6.2.1 but it's non deterministic anymore (8.6.1) - looks 
like it queries a random single shard.

I've tried using /solr/collection/select?q=*:*&wt=csv&rows=0&facet but it 
behaves the same.

Can it be configured to query all shards?
Is there another way to achieve this?

Thanks a lot.

Have a great weekend.

Avi.



This electronic message may contain proprietary and confidential information of 
Verint Systems Inc., its affiliates and/or subsidiaries. The information is 
intended to be for the use of the individual(s) or entity(ies) named above. If 
you are not the intended recipient (or authorized to receive this e-mail for 
the intended recipient), you may not use, copy, disclose or distribute to 
anyone this message or any information contained in this message. If you have 
received this electronic message in error, please notify us by replying to this 
e-mail.


How to implement NOTIN operator with Solr

2019-11-19 Thread Raboah, Avi
I am trying to find the documents which hit this example:

q=text:"credit" NOTIN "credit card"

for that query I want to get all the documents which contain the term "credit" 
but not as part of the phrase "credit card".

so:

1. I don't want to get the documents which include just "credit card".

2. I want to get the documents which include just "credit".

3. I want to get the documents which include "credit" but not as part of 
credit card.



for example:

doc1 text: "I want to buy with my credit in my card"

doc2 text: "I want to buy with my credit in my credit card"

doc3 text: "I want to buy with my credit card"

The documents should be returned:

doc1, doc2

I can't find nothing about NOTIN operator implementation in SOLR docs.



This electronic message may contain proprietary and confidential information of 
Verint Systems Inc., its affiliates and/or subsidiaries. The information is 
intended to be for the use of the individual(s) or entity(ies) named above. If 
you are not the intended recipient (or authorized to receive this e-mail for 
the intended recipient), you may not use, copy, disclose or distribute to 
anyone this message or any information contained in this message. If you have 
received this electronic message in error, please notify us by replying to this 
e-mail.


RE: How to implement NOTIN operator with Solr

2019-11-19 Thread Raboah, Avi
In that case I got only doc1

-Original Message-
From: Emir Arnautović [mailto:emir.arnauto...@sematext.com]
Sent: Tuesday, November 19, 2019 11:51 AM
To: solr-user@lucene.apache.org
Subject: Re: How to implement NOTIN operator with Solr

Hi Avi,
There are span queries, but in this case you don’t need it. It is enough to 
simply filter out documents that are with “credit card”. Your query can be 
something like
+text:credit -text:”credit card”
If you prefer using boolean operators, you can write it as:
text:credit AND NOT text: “credit card”

HTH,
Emir
--
Monitoring - Log Management - Alerting - Anomaly Detection Solr & Elasticsearch 
Consulting Support Training - http://sematext.com/



> On 19 Nov 2019, at 10:30, Raboah, Avi  wrote:
>
> I am trying to find the documents which hit this example:
>
> q=text:"credit" NOTIN "credit card"
>
> for that query I want to get all the documents which contain the term 
> "credit" but not as part of the phrase "credit card".
>
> so:
>
> 1. I don't want to get the documents which include just "credit card".
>
> 2. I want to get the documents which include just "credit".
>
> 3. I want to get the documents which include "credit" but not as part of 
> credit card.
>
>
>
> for example:
>
> doc1 text: "I want to buy with my credit in my card"
>
> doc2 text: "I want to buy with my credit in my credit card"
>
> doc3 text: "I want to buy with my credit card"
>
> The documents should be returned:
>
> doc1, doc2
>
> I can't find nothing about NOTIN operator implementation in SOLR docs.
>
>
>
> This electronic message may contain proprietary and confidential information 
> of Verint Systems Inc., its affiliates and/or subsidiaries. The information 
> is intended to be for the use of the individual(s) or entity(ies) named 
> above. If you are not the intended recipient (or authorized to receive this 
> e-mail for the intended recipient), you may not use, copy, disclose or 
> distribute to anyone this message or any information contained in this 
> message. If you have received this electronic message in error, please notify 
> us by replying to this e-mail.



This electronic message may contain proprietary and confidential information of 
Verint Systems Inc., its affiliates and/or subsidiaries. The information is 
intended to be for the use of the individual(s) or entity(ies) named above. If 
you are not the intended recipient (or authorized to receive this e-mail for 
the intended recipient), you may not use, copy, disclose or distribute to 
anyone this message or any information contained in this message. If you have 
received this electronic message in error, please notify us by replying to this 
e-mail.


RE: How to implement NOTIN operator with Solr

2019-11-19 Thread Raboah, Avi
It's working!!! thanks a lot :)

-Original Message-
From: Emir Arnautović [mailto:emir.arnauto...@sematext.com]
Sent: Tuesday, November 19, 2019 2:54 PM
To: solr-user@lucene.apache.org
Subject: Re: How to implement NOTIN operator with Solr

Right - didn’t read all your examples. In that case you can use span queries. 
In this case complexphrase query parser should do the trick:
{!complexphrase df=text}”credit -card”

Regards,
Emir
--
Monitoring - Log Management - Alerting - Anomaly Detection Solr & Elasticsearch 
Consulting Support Training - http://sematext.com/



> On 19 Nov 2019, at 11:08, Raboah, Avi  wrote:
>
> In that case I got only doc1
>
> -Original Message-
> From: Emir Arnautović [mailto:emir.arnauto...@sematext.com]
> Sent: Tuesday, November 19, 2019 11:51 AM
> To: solr-user@lucene.apache.org
> Subject: Re: How to implement NOTIN operator with Solr
>
> Hi Avi,
> There are span queries, but in this case you don’t need it. It is
> enough to simply filter out documents that are with “credit card”.
> Your query can be something like
> +text:credit -text:”credit card”
> If you prefer using boolean operators, you can write it as:
> text:credit AND NOT text: “credit card”
>
> HTH,
> Emir
> --
> Monitoring - Log Management - Alerting - Anomaly Detection Solr &
> Elasticsearch Consulting Support Training - http://sematext.com/
>
>
>
>> On 19 Nov 2019, at 10:30, Raboah, Avi  wrote:
>>
>> I am trying to find the documents which hit this example:
>>
>> q=text:"credit" NOTIN "credit card"
>>
>> for that query I want to get all the documents which contain the term 
>> "credit" but not as part of the phrase "credit card".
>>
>> so:
>>
>> 1. I don't want to get the documents which include just "credit card".
>>
>> 2. I want to get the documents which include just "credit".
>>
>> 3. I want to get the documents which include "credit" but not as part of 
>> credit card.
>>
>>
>>
>> for example:
>>
>> doc1 text: "I want to buy with my credit in my card"
>>
>> doc2 text: "I want to buy with my credit in my credit card"
>>
>> doc3 text: "I want to buy with my credit card"
>>
>> The documents should be returned:
>>
>> doc1, doc2
>>
>> I can't find nothing about NOTIN operator implementation in SOLR docs.
>>
>>
>>
>> This electronic message may contain proprietary and confidential information 
>> of Verint Systems Inc., its affiliates and/or subsidiaries. The information 
>> is intended to be for the use of the individual(s) or entity(ies) named 
>> above. If you are not the intended recipient (or authorized to receive this 
>> e-mail for the intended recipient), you may not use, copy, disclose or 
>> distribute to anyone this message or any information contained in this 
>> message. If you have received this electronic message in error, please 
>> notify us by replying to this e-mail.
>
>
>
> This electronic message may contain proprietary and confidential information 
> of Verint Systems Inc., its affiliates and/or subsidiaries. The information 
> is intended to be for the use of the individual(s) or entity(ies) named 
> above. If you are not the intended recipient (or authorized to receive this 
> e-mail for the intended recipient), you may not use, copy, disclose or 
> distribute to anyone this message or any information contained in this 
> message. If you have received this electronic message in error, please notify 
> us by replying to this e-mail.



This electronic message may contain proprietary and confidential information of 
Verint Systems Inc., its affiliates and/or subsidiaries. The information is 
intended to be for the use of the individual(s) or entity(ies) named above. If 
you are not the intended recipient (or authorized to receive this e-mail for 
the intended recipient), you may not use, copy, disclose or distribute to 
anyone this message or any information contained in this message. If you have 
received this electronic message in error, please notify us by replying to this 
e-mail.


SpanFirst vs SpanEnd

2019-12-04 Thread Raboah, Avi
Hi,

After deep diving into lucene code I found that,
the SpanFirstQuery object just use the SpanPositionRangeQuery object  with 
start position 0 and the given end position from the query.

I am trying to implement the SpanEndQuery in the same way because the End 
position should be the last position and the start should be taken from the 
query.

There is a way to get the position of the last term in a specific string field?

Thanks.


This electronic message may contain proprietary and confidential information of 
Verint Systems Inc., its affiliates and/or subsidiaries. The information is 
intended to be for the use of the individual(s) or entity(ies) named above. If 
you are not the intended recipient (or authorized to receive this e-mail for 
the intended recipient), you may not use, copy, disclose or distribute to 
anyone this message or any information contained in this message. If you have 
received this electronic message in error, please notify us by replying to this 
e-mail.


Edismax bq(boost query) with filter range on score

2019-12-08 Thread Raboah, Avi
Hi,

In order to use solr boost mechanism for specific text I use the bq field under 
deftype=edisMax.

For example -
q=*:*&deftype=edisMax&bq=text:"phrase"^3&fl=*,score

after I do this query I get the relevant documents boosted with the solr 
calculation score.
Now my question is there a way to do a filter range on the score?

Thanks.





This electronic message may contain proprietary and confidential information of 
Verint Systems Inc., its affiliates and/or subsidiaries. The information is 
intended to be for the use of the individual(s) or entity(ies) named above. If 
you are not the intended recipient (or authorized to receive this e-mail for 
the intended recipient), you may not use, copy, disclose or distribute to 
anyone this message or any information contained in this message. If you have 
received this electronic message in error, please notify us by replying to this 
e-mail.


RE: Edismax bq(boost query) with filter range on score

2019-12-09 Thread Raboah, Avi
That's right,

I check something like this fq={!frange l=0 u=5}query($bq)

And it's partially work but it's not return the documents with score = 1.0

Do you know why?


Thanks.
-Original Message-
From: Paras Lehana [mailto:paras.leh...@indiamart.com]
Sent: Monday, December 09, 2019 7:08 AM
To: solr-user@lucene.apache.org
Subject: Re: Edismax bq(boost query) with filter range on score

Hi Raboah,

What do you mean by filter range? Please post expected result. Do you want to 
put an fq on the score?

On Sun, 8 Dec 2019 at 17:54, Raboah, Avi  wrote:

> Hi,
>
> In order to use solr boost mechanism for specific text I use the bq
> field under deftype=edisMax.
>
> For example -
> q=*:*&deftype=edisMax&bq=text:"phrase"^3&fl=*,score
>
> after I do this query I get the relevant documents boosted with the
> solr calculation score.
> Now my question is there a way to do a filter range on the score?
>
> Thanks.
>
>
>
>
>
> This electronic message may contain proprietary and confidential
> information of Verint Systems Inc., its affiliates and/or
> subsidiaries. The information is intended to be for the use of the
> individual(s) or
> entity(ies) named above. If you are not the intended recipient (or
> authorized to receive this e-mail for the intended recipient), you may
> not use, copy, disclose or distribute to anyone this message or any
> information contained in this message. If you have received this
> electronic message in error, please notify us by replying to this e-mail.
>


--
--
Regards,

*Paras Lehana* [65871]
Development Engineer, Auto-Suggest,
IndiaMART Intermesh Ltd.

8th Floor, Tower A, Advant-Navis Business Park, Sector 142, Noida, UP, IN - 
201303

Mob.: +91-9560911996
Work: 01203916600 | Extn:  *8173*

--
*
*

 <https://www.facebook.com/IndiaMART/videos/578196442936091/>


This electronic message may contain proprietary and confidential information of 
Verint Systems Inc., its affiliates and/or subsidiaries. The information is 
intended to be for the use of the individual(s) or entity(ies) named above. If 
you are not the intended recipient (or authorized to receive this e-mail for 
the intended recipient), you may not use, copy, disclose or distribute to 
anyone this message or any information contained in this message. If you have 
received this electronic message in error, please notify us by replying to this 
e-mail.


RE: Edismax bq(boost query) with filter range on score

2019-12-09 Thread Raboah, Avi
Thanks for your fast response!

Without the frange I get all the documents with the score field from 1.0 
(default score) to max score after boosting.

When I add the frange for example
bq=text:"Phrase"^3&defType=edismax&fl=*,score&fq={!frange  l=0 u=3 
inclusive=true}query($bq)&q=*:*&rows=2000

I get all the documents with score between (1.0 < score < 4.0) although lower 
bound equal to 0.

Thanks.

-Original Message-
From: Paras Lehana [mailto:paras.leh...@indiamart.com]
Sent: Monday, December 09, 2019 11:51 AM
To: solr-user@lucene.apache.org
Subject: Re: Edismax bq(boost query) with filter range on score

I was just going to suggest you frange. You're already using it.

Please post the whole query. Have you confirmed that by removing the frange, 
you are able to see the documents with score=1.0.

On Mon, 9 Dec 2019 at 14:21, Raboah, Avi  wrote:

> That's right,
>
> I check something like this fq={!frange l=0 u=5}query($bq)
>
> And it's partially work but it's not return the documents with score =
> 1.0
>
> Do you know why?
>
>
> Thanks.
> -Original Message-
> From: Paras Lehana [mailto:paras.leh...@indiamart.com]
> Sent: Monday, December 09, 2019 7:08 AM
> To: solr-user@lucene.apache.org
> Subject: Re: Edismax bq(boost query) with filter range on score
>
> Hi Raboah,
>
> What do you mean by filter range? Please post expected result. Do you
> want to put an fq on the score?
>
> On Sun, 8 Dec 2019 at 17:54, Raboah, Avi  wrote:
>
> > Hi,
> >
> > In order to use solr boost mechanism for specific text I use the bq
> > field under deftype=edisMax.
> >
> > For example -
> > q=*:*&deftype=edisMax&bq=text:"phrase"^3&fl=*,score
> >
> > after I do this query I get the relevant documents boosted with the
> > solr calculation score.
> > Now my question is there a way to do a filter range on the score?
> >
> > Thanks.
> >
> >
> >
> >
> >
> > This electronic message may contain proprietary and confidential
> > information of Verint Systems Inc., its affiliates and/or
> > subsidiaries. The information is intended to be for the use of the
> > individual(s) or
> > entity(ies) named above. If you are not the intended recipient (or
> > authorized to receive this e-mail for the intended recipient), you
> > may not use, copy, disclose or distribute to anyone this message or
> > any information contained in this message. If you have received this
> > electronic message in error, please notify us by replying to this e-mail.
> >
>
>
> --
> --
> Regards,
>
> *Paras Lehana* [65871]
> Development Engineer, Auto-Suggest,
> IndiaMART Intermesh Ltd.
>
> 8th Floor, Tower A, Advant-Navis Business Park, Sector 142, Noida, UP,
> IN
> - 201303
>
> Mob.: +91-9560911996
> Work: 01203916600 | Extn:  *8173*
>
> --
> *
> *
>
>  <https://www.facebook.com/IndiaMART/videos/578196442936091/>
>
>
> This electronic message may contain proprietary and confidential
> information of Verint Systems Inc., its affiliates and/or
> subsidiaries. The information is intended to be for the use of the
> individual(s) or
> entity(ies) named above. If you are not the intended recipient (or
> authorized to receive this e-mail for the intended recipient), you may
> not use, copy, disclose or distribute to anyone this message or any
> information contained in this message. If you have received this
> electronic message in error, please notify us by replying to this e-mail.
>


--
--
Regards,

*Paras Lehana* [65871]
Development Engineer, Auto-Suggest,
IndiaMART Intermesh Ltd.

8th Floor, Tower A, Advant-Navis Business Park, Sector 142, Noida, UP, IN - 
201303

Mob.: +91-9560911996
Work: 01203916600 | Extn:  *8173*

--
*
*

 <https://www.facebook.com/IndiaMART/videos/578196442936091/>


This electronic message may contain proprietary and confidential information of 
Verint Systems Inc., its affiliates and/or subsidiaries. The information is 
intended to be for the use of the individual(s) or entity(ies) named above. If 
you are not the intended recipient (or authorized to receive this e-mail for 
the intended recipient), you may not use, copy, disclose or distribute to 
anyone this message or any information contained in this message. If you have 
received this electronic message in error, please notify us by replying to this 
e-mail.


RE: Edismax bq(boost query) with filter range on score

2019-12-09 Thread Raboah, Avi
I am using solr 7.6.0 and I try to check the incl and incu I get the same 
result for true or false

-Original Message-
From: Paras Lehana [mailto:paras.leh...@indiamart.com]
Sent: Monday, December 09, 2019 1:31 PM
To: solr-user@lucene.apache.org
Subject: Re: Edismax bq(boost query) with filter range on score

I don't know if this inclusive works though I know that incl is for including 
the lower bound and incu is for including the upper bound.

On Mon, 9 Dec 2019 at 16:49, Raboah, Avi  wrote:

> Thanks for your fast response!
>
> Without the frange I get all the documents with the score field from
> 1.0 (default score) to max score after boosting.
>
> When I add the frange for example
> bq=text:"Phrase"^3&defType=edismax&fl=*,score&fq={!frange  l=0 u=3
> inclusive=true}query($bq)&q=*:*&rows=2000
>
> I get all the documents with score between (1.0 < score < 4.0)
> although lower bound equal to 0.
>
> Thanks.
>
> -Original Message-
> From: Paras Lehana [mailto:paras.leh...@indiamart.com]
> Sent: Monday, December 09, 2019 11:51 AM
> To: solr-user@lucene.apache.org
> Subject: Re: Edismax bq(boost query) with filter range on score
>
> I was just going to suggest you frange. You're already using it.
>
> Please post the whole query. Have you confirmed that by removing the
> frange, you are able to see the documents with score=1.0.
>
> On Mon, 9 Dec 2019 at 14:21, Raboah, Avi  wrote:
>
> > That's right,
> >
> > I check something like this fq={!frange l=0 u=5}query($bq)
> >
> > And it's partially work but it's not return the documents with score
> > =
> > 1.0
> >
> > Do you know why?
> >
> >
> > Thanks.
> > -Original Message-
> > From: Paras Lehana [mailto:paras.leh...@indiamart.com]
> > Sent: Monday, December 09, 2019 7:08 AM
> > To: solr-user@lucene.apache.org
> > Subject: Re: Edismax bq(boost query) with filter range on score
> >
> > Hi Raboah,
> >
> > What do you mean by filter range? Please post expected result. Do
> > you want to put an fq on the score?
> >
> > On Sun, 8 Dec 2019 at 17:54, Raboah, Avi  wrote:
> >
> > > Hi,
> > >
> > > In order to use solr boost mechanism for specific text I use the
> > > bq field under deftype=edisMax.
> > >
> > > For example -
> > > q=*:*&deftype=edisMax&bq=text:"phrase"^3&fl=*,score
> > >
> > > after I do this query I get the relevant documents boosted with
> > > the solr calculation score.
> > > Now my question is there a way to do a filter range on the score?
> > >
> > > Thanks.
> > >
> > >
> > >
> > >
> > >
> > > This electronic message may contain proprietary and confidential
> > > information of Verint Systems Inc., its affiliates and/or
> > > subsidiaries. The information is intended to be for the use of the
> > > individual(s) or
> > > entity(ies) named above. If you are not the intended recipient (or
> > > authorized to receive this e-mail for the intended recipient), you
> > > may not use, copy, disclose or distribute to anyone this message
> > > or any information contained in this message. If you have received
> > > this electronic message in error, please notify us by replying to
> > > this
> e-mail.
> > >
> >
> >
> > --
> > --
> > Regards,
> >
> > *Paras Lehana* [65871]
> > Development Engineer, Auto-Suggest,
> > IndiaMART Intermesh Ltd.
> >
> > 8th Floor, Tower A, Advant-Navis Business Park, Sector 142, Noida,
> > UP, IN
> > - 201303
> >
> > Mob.: +91-9560911996
> > Work: 01203916600 | Extn:  *8173*
> >
> > --
> > *
> > *
> >
> >  <https://www.facebook.com/IndiaMART/videos/578196442936091/>
> >
> >
> > This electronic message may contain proprietary and confidential
> > information of Verint Systems Inc., its affiliates and/or
> > subsidiaries. The information is intended to be for the use of the
> > individual(s) or
> > entity(ies) named above. If you are not the intended recipient (or
> > authorized to receive this e-mail for the intended recipient), you
> > may not use, copy, disclose or distribute to anyone this message or
> > any information contained in this message. If you have received this
> > electronic message in error, please notify us by replying to this e-mail.
> >
>
>
> --
> --
> Regards,
>
> *Paras Lehana* [65871]
> Devel

RE: Edismax bq(boost query) with filter range on score

2019-12-09 Thread Raboah, Avi
I check the frange on another field and not on query($bq) for some reason on 
schema field it's filter in the right way and I get all the relevant values,
But when I do the filter on the return score from query($bq) the upper and the 
lower bound behave different and in addition I didn't get the documents with 
default score equal to 1.0

-Original Message-----
From: Raboah, Avi [mailto:avi.rab...@verint.com]
Sent: Monday, December 09, 2019 2:09 PM
To: solr-user@lucene.apache.org
Subject: RE: Edismax bq(boost query) with filter range on score

I am using solr 7.6.0 and I try to check the incl and incu I get the same 
result for true or false

-Original Message-
From: Paras Lehana [mailto:paras.leh...@indiamart.com]
Sent: Monday, December 09, 2019 1:31 PM
To: solr-user@lucene.apache.org
Subject: Re: Edismax bq(boost query) with filter range on score

I don't know if this inclusive works though I know that incl is for including 
the lower bound and incu is for including the upper bound.

On Mon, 9 Dec 2019 at 16:49, Raboah, Avi  wrote:

> Thanks for your fast response!
>
> Without the frange I get all the documents with the score field from
> 1.0 (default score) to max score after boosting.
>
> When I add the frange for example
> bq=text:"Phrase"^3&defType=edismax&fl=*,score&fq={!frange  l=0 u=3
> inclusive=true}query($bq)&q=*:*&rows=2000
>
> I get all the documents with score between (1.0 < score < 4.0)
> although lower bound equal to 0.
>
> Thanks.
>
> -Original Message-
> From: Paras Lehana [mailto:paras.leh...@indiamart.com]
> Sent: Monday, December 09, 2019 11:51 AM
> To: solr-user@lucene.apache.org
> Subject: Re: Edismax bq(boost query) with filter range on score
>
> I was just going to suggest you frange. You're already using it.
>
> Please post the whole query. Have you confirmed that by removing the
> frange, you are able to see the documents with score=1.0.
>
> On Mon, 9 Dec 2019 at 14:21, Raboah, Avi  wrote:
>
> > That's right,
> >
> > I check something like this fq={!frange l=0 u=5}query($bq)
> >
> > And it's partially work but it's not return the documents with score
> > =
> > 1.0
> >
> > Do you know why?
> >
> >
> > Thanks.
> > -Original Message-
> > From: Paras Lehana [mailto:paras.leh...@indiamart.com]
> > Sent: Monday, December 09, 2019 7:08 AM
> > To: solr-user@lucene.apache.org
> > Subject: Re: Edismax bq(boost query) with filter range on score
> >
> > Hi Raboah,
> >
> > What do you mean by filter range? Please post expected result. Do
> > you want to put an fq on the score?
> >
> > On Sun, 8 Dec 2019 at 17:54, Raboah, Avi  wrote:
> >
> > > Hi,
> > >
> > > In order to use solr boost mechanism for specific text I use the
> > > bq field under deftype=edisMax.
> > >
> > > For example -
> > > q=*:*&deftype=edisMax&bq=text:"phrase"^3&fl=*,score
> > >
> > > after I do this query I get the relevant documents boosted with
> > > the solr calculation score.
> > > Now my question is there a way to do a filter range on the score?
> > >
> > > Thanks.
> > >
> > >
> > >
> > >
> > >
> > > This electronic message may contain proprietary and confidential
> > > information of Verint Systems Inc., its affiliates and/or
> > > subsidiaries. The information is intended to be for the use of the
> > > individual(s) or
> > > entity(ies) named above. If you are not the intended recipient (or
> > > authorized to receive this e-mail for the intended recipient), you
> > > may not use, copy, disclose or distribute to anyone this message
> > > or any information contained in this message. If you have received
> > > this electronic message in error, please notify us by replying to
> > > this
> e-mail.
> > >
> >
> >
> > --
> > --
> > Regards,
> >
> > *Paras Lehana* [65871]
> > Development Engineer, Auto-Suggest,
> > IndiaMART Intermesh Ltd.
> >
> > 8th Floor, Tower A, Advant-Navis Business Park, Sector 142, Noida,
> > UP, IN
> > - 201303
> >
> > Mob.: +91-9560911996
> > Work: 01203916600 | Extn:  *8173*
> >
> > --
> > *
> > *
> >
> >  <https://www.facebook.com/IndiaMART/videos/578196442936091/>
> >
> >
> > This electronic message may contain proprietary and confidential
> > information of Verint Systems Inc., its affiliates and/or
> > subsidiaries. T