Thanks for your reply.
can the recip function be used to boost a numeric field here:
recip(ord(rating),100,1,1)
--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html
You can pass additional bq params in the query.
~Aravind
On Oct 23, 2017 4:10 PM, "ruby" wrote:
> If I want to boost multiple fields using Edismax query parser, is following
> the correct way of doing it:
>
>
>
> edismax
> field1:(apple)^500
> field1:(orange
If I want to boost multiple fields using Edismax query parser, is following
the correct way of doing it:
edismax
field1:(apple)^500
field1:(orange)^400
field1:(pear)^300
field2:(4)^500
field2:(2)^100
recip(ms(NOW,mod_date),3.16e-11,1,1)
recip(ms(NOW,creation_date),3.16e-11,1,1)
And
If I want to boost multiple fields using Edismax query parser, is following
the correct way of doing it:
edismax
field1:(apple)^500
field1:(orange)^400
field1:(pear)^300
field2:(4)^500
field2:(2)^100
recip(ms(NOW,mod_date),3.16e-11,1,1)
recip(ms(NOW,creation_date),3.16e-11,1,1)
And
Thanks for the suggestions Erik and Vrindavda,
i was trying to understand how does the above query work when we have slop
set to 10. the debug output of the SOLR Query gave the terms which were
being looked up but the transpositions done to look up the search wasn't
exposed.
i found following sta
Adding &debug=true to your search requests will give you the parsing details,
so you can see how edismax interprets the query string and parameters to turn
it into the underlying dismax and phrase queries.
Erik
> On Jun 12, 2017, at 3:22 AM, abhi Abhishek wrote:
>
> Hi All,
> How
hi you can refer : http://yonik.com/solr/query-syntax/
--
View this message in context:
http://lucene.472066.n3.nabble.com/Proximity-Search-using-edismax-parser-tp4340115p4340133.html
Sent from the Solr - User mailing list archive at Nabble.com.
Hi All,
How does proximity Query work in SOLR.
Example if i am running a query like below, for the field containing the
text “India registered a historical test match win against the arch rival
Pakistan here in Lords, England on Sunday”
Query: “Test match India Pakistan” ~ 10
Hi,
different results are obtained for a query separated by comma and one separated
by whitespace,
"q":"foo,bar",
"q":"foo bar",
although solr.StandardTokenizerFactory is utilized. The eDisMax Query Parser is
used.
Fields of interest are determined by the 'qf' parameter.
"defType"
' (without
> any surrounding phrase-characters), will edismax not boost this document?
>
> /Jimi
>
> -Original Message-
> From: Jan Høydahl [mailto:jan....@cominvent.com]
> Sent: Wednesday, April 6, 2016 10:43 AM
> To: solr-user@lucene.apache.org
> Subject: R
On 4/6/2016 7:13 AM, jimi.hulleg...@svensktnaringsliv.se wrote:
> Ah, thanks. It never occurred to me that clicking on the text "Create" would
> give me a different result compared to clicking on the arrow. In my mind,
> "Create" was simply the label, and the arrow indicating a dropdown option fo
On Wednesday, April 6, 2016 2:50 PM, apa...@elyograg.org wrote:
>
> If you can only create a service desk request, then you might be clicking the
> "Service Desk" menu item,
> or maybe you're clicking the little down arrow on the right side of the big
> red "Create" button.
> Try clicking the
On 4/6/2016 2:35 AM, jimi.hulleg...@svensktnaringsliv.se wrote:
> I guess I can conclude that this is a bug. But I wasn't able to report it in
> Jira. I just got to some servicedesk form
> (https://issues.apache.org/jira/servicedesk/customer/portal/5/create/27) that
> didn't seem related to solr
>
> /Jimi
>
> -Original Message-
> From: Jan Høydahl [mailto:jan....@cominvent.com]
> Sent: Wednesday, April 6, 2016 10:43 AM
> To: solr-user@lucene.apache.org
> Subject: Re: Can't get phrase field boosting to work using edismax
>
> Hi,
>
> P
'John' (without any
surrounding phrase-characters), will edismax not boost this document?
/Jimi
-Original Message-
From: Jan Høydahl [mailto:jan@cominvent.com]
Sent: Wednesday, April 6, 2016 10:43 AM
To: solr-user@lucene.apache.org
Subject: Re: Can't get phras
houldn't be a boost", but no
> explaination *why* at least two is needed.
>
> Regards
> /Jimi
>
> -Original Message-
> From: jimi.hulleg...@svensktnaringsliv.se
> [mailto:jimi.hulleg...@svensktnaringsliv.se]
> Sent: Tuesday, April 5, 2016 6:51 PM
> T
:11 PM
To: solr-user@lucene.apache.org
Subject: RE: Can't get phrase field boosting to work using edismax
Some more input, before I call it a day. Just for the heck of it, I tried
changing minClauseSize to 0 using the Eclipse debugger, so that it didn't
return null at line 1203, but ins
ge-
From: jimi.hulleg...@svensktnaringsliv.se
[mailto:jimi.hulleg...@svensktnaringsliv.se]
Sent: Tuesday, April 5, 2016 6:51 PM
To: solr-user@lucene.apache.org
Subject: RE: Can't get phrase field boosting to work using edismax
I now used the Eclipse debugger, to try and see if I can understand what is
mailto:jimi.hulleg...@svensktnaringsliv.se]
Sent: Tuesday, April 5, 2016 5:36 PM
To: solr-user@lucene.apache.org
Subject: RE: Can't get phrase field boosting to work using edismax
OK. Interesting. But... I added a solr.TrimFilterFactory at the end of my
analyzer definition. Shouldn't that take care o
From: Jack Krupansky [mailto:jack.krupan...@gmail.com]
Sent: Tuesday, April 5, 2016 4:42 PM
To: solr-user@lucene.apache.org
Subject: Re: Can't get phrase field boosting to work using edismax
It looks like the code constructing the boost phrase for pf will always add a
trailing blank, which is
It looks like the code constructing the boost phrase for pf will always add
a trailing blank, which is never a problem when a normal tokenizer is used
that removes white space, but the keyword tokenizer will preserve that
extra space, which prevents an exact match.
See line 531:
https://github.com
Hi,
I'm trying to boost documents using a phrase field boosting (ie the pf
parameter for edismax), but I can't get it to work (ie boosting documents where
the pf field match the query as a phrase).
As far as I can tell, solr, or more specifically the edismax handler, does
*something* when I ad
Hi Ahmet,
Brilliant, thanks a lot!
I thought it might be possible with local parameters, but couldn't find
any information anywhere on how (especially setting the multi-valued
"qf" parameter).
Thanks again,
Thomas
On 2015-07-10 14:09, Ahmet Arslan wrote:
> Hi Tomasi
>
> Yes it is possible, plea
Hi Tomasi
Yes it is possible, please see local params :
https://cwiki.apache.org/confluence/display/solr/Local+Parameters+in+Queries
fq={!edismax qf='field1 field2 field'}search key
Ahmet
On Friday, July 10, 2015 2:20 PM, Thomas Seidl wrote:
Hi all,
I was wondering if there's any way to u
Hi all,
I was wondering if there's any way to use the Extended DisMax query
parser in an "fq" filter query?
The problem is that I have a "facet.query" with which I want to check
whether a certain set of keywords would have any results. But since the
normal query goes across multiple fields, I end
, January 23, 2015 8:26:48 AM
Subject: RE: Avoiding wildcard queries using edismax query parser
Here's a Jira for this: https://issues.apache.org/jira/browse/SOLR-3031
I've attached a patch there that might be useful for you.
-Michael
-Original Message-
From: Jorge Luis Betanco
solr-user@lucene.apache.org
Subject: Avoiding wildcard queries using edismax query parser
Hello all,
Currently we are using edismax query parser in an internal application, we've
detected that some wildcard queries including "*" are causing some performance
issues and for this
ge -
> From: "Jack Krupansky"
> To: solr-user@lucene.apache.org
> Sent: Friday, January 23, 2015 12:02:44 AM
> Subject: Re: Avoiding wildcard queries using edismax query parser
>
> The dismax query parser does not support wildcards. It is designed to be
> simpler.
&
The query gets translated into a MatchAllDocsQuery, which I think happens
before the textual analysis.
- Original Message -
From: "Jack Krupansky"
To: solr-user@lucene.apache.org
Sent: Friday, January 23, 2015 12:02:44 AM
Subject: Re: Avoiding wildcard queries using edismax q
erhaps a configuration
> option existed to accomplish the same with the edismax query parser, but I
> haven't found such option.
>
> I'm going to test with a custom search component.
>
> Thanks for the quick response Alex,
>
> Regards,
>
> - Original Message -
ps a configuration option
existed to accomplish the same with the edismax query parser, but I haven't
found such option.
I'm going to test with a custom search component.
Thanks for the quick response Alex,
Regards,
- Original Message -
From: "Alexandre Rafalovitch"
lt;
jlbetanco...@uci.cu> wrote:
> Hello all,
>
> Currently we are using edismax query parser in an internal application,
> we've detected that some wildcard queries including "*" are causing some
> performance issues and for this particular case we're not intereste
:
> Hello all,
>
> Currently we are using edismax query parser in an internal application, we've
> detected that some wildcard queries including "*" are causing some
> performance issues and for this particular case we're not interested in
> allowing any use
Hello all,
Currently we are using edismax query parser in an internal application, we've
detected that some wildcard queries including "*" are causing some performance
issues and for this particular case we're not interested in allowing any user
to request all the index
lues even.
>
>Erik
>
>
>> On Dec 8, 2014, at 02:45, S.L wrote:
>>
>> Hi All,
>>
>> I have a situation where I need to boost the score of a query if a field
>> (imageURL) in the given document is non empty , I am using edismax so I
>> know tha
tuation where I need to boost the score of a query if a field
> (imageURL) in the given document is non empty , I am using edismax so I
> know that using bq parameter would solve the problem. However the field
> imageURL that I am trying to boost on is not indexed , meaning (stored =
&g
Anyone ?
On Mon, Dec 8, 2014 at 2:45 AM, S.L wrote:
> Hi All,
>
> I have a situation where I need to boost the score of a query if a field
> (imageURL) in the given document is non empty , I am using edismax so I
> know that using bq parameter would solve the problem. Ho
Hi All,
I have a situation where I need to boost the score of a query if a field
(imageURL) in the given document is non empty , I am using edismax so I
know that using bq parameter would solve the problem. However the field
imageURL that I am trying to boost on is not indexed , meaning (stored
q=item_id:[0+TO+*]&fq=&rows=60&defType=edismax&version=2&debugQuery=on
>>
>>
>>
>> --
>> View this message in context:
>> http://lucene.472066.n3.nabble.com/Problem-limit-results-when-using-edismax-way-tp4143601p4143606.html
>> Sent from the Solr - User mailing list archive at Nabble.com.
>>
--
Walter Underwood
wun...@wunderwood.org
message in context:
> http://lucene.472066.n3.nabble.com/Problem-limit-results-when-using-edismax-way-tp4143601p4143606.html
> Sent from the Solr - User mailing list archive at Nabble.com.
>
context:
http://lucene.472066.n3.nabble.com/Problem-limit-results-when-using-edismax-way-tp4143601p4143606.html
Sent from the Solr - User mailing list archive at Nabble.com.
Can you please paste the whole query url here.
With Regards
Aman Tandon
On Tue, Jun 24, 2014 at 8:48 AM, xiaoqi wrote:
>
> when user input keywords like "white T shirt" to search products, i want to
> list all T shirt with white colour , so i using edismax like
> item_ca
when user input keywords like "white T shirt" to search products, i want to
list all T shirt with white colour , so i using edismax like
item_category^1.4 item_colour^0.5 , but the result still come out some other
products which is not T shirt but white.
is any way to limit result on
Thanks Ahmet, I'll give it a shot.
--
View this message in context:
http://lucene.472066.n3.nabble.com/Can-we-do-conditional-boosting-using-edismax-tp4141131p4141268.html
Sent from the Solr - User mailing list archive at Nabble.com.
Hi Shamik,
Yes it is possible with map and query functions.
Please see Jan's example :
http://www.cominvent.com/2012/01/25/super-flexible-autocomplete-with-solr/
On Wednesday, June 11, 2014 9:34 AM, Shamik Bandopadhyay
wrote:
Hi,
I'm using edismax parser to perform a runtim
Hi,
I'm using edismax parser to perform a runtime boosting. Here's my sample
request handler entry.
text^2 title^3
Source:Blog^3 Source2:Videos^2
recip(ms(NOW/DAY,PublishDate),3.16e-11,1,1)^2.0
As you can see, I'm adding weights to text and title, as well as, boosting
on s
-user@lucene.apache.org
Subject: Re: Performance impact using edismax over dismax
HI Jack,
I am not using pf parameter rather I am sending query in Quotes.
So sample query string for 'east ende rs'
I am querying "east ende rs"+OR+east+ende+rs with defType is solrconfig set
to
Thanks
Srinivasa
--
View this message in context:
http://lucene.472066.n3.nabble.com/Performance-impact-using-edismax-over-dismax-tp4115821p4115841.html
Sent from the Solr - User mailing list archive at Nabble.com.
omewhat to query complexity,
albeit in the name of better relevancy.
-- Jack Krupansky
-Original Message-
From: Srinivasa7
Sent: Thursday, February 6, 2014 9:30 AM
To: solr-user@lucene.apache.org
Subject: Performance impact using edismax over dismax
Hi All,
I have a requirement to sear
there is a
performance impact.
Any thoughts?
Using solr 3.6.2
Thanks
Srinivasa
--
View this message in context:
http://lucene.472066.n3.nabble.com/Performance-impact-using-edismax-over-dismax-tp4115821.html
Sent from the Solr - User mailing list archive at Nabble.com.
query request.
>
> -- Jack Krupansky
>
> -Original Message- From: amit
> Sent: Saturday, April 06, 2013 3:15 AM
> To: solr-user@lucene.apache.org
> Subject: using edismax without velocity
>
>
> I am using solr3.6 and trying to use the edismax handler.
> The config
Krupansky
-Original Message-
From: amit
Sent: Saturday, April 06, 2013 3:15 AM
To: solr-user@lucene.apache.org
Subject: using edismax without velocity
I am using solr3.6 and trying to use the edismax handler.
The config has a /browse requestHandler, but it doesn't work because of
missing c
Definitely in 4.x release. Did you try it and found a problem?
es my purpose?
http://localhost:8080/solr/select/?q=(coldfusion^2
cache^1)*&defType=edismax&qf=name^2 description^1*&fq=author:[* TO *] AND
-author:chinmoyp&start=0&rows=10&fl=author,score, id
--
View this message in context:
http://lucene.472066.n3.nabble.com/using-edism
-- Jack Krupansky
>
> -Original Message- From: Floyd Wu
> Sent: Monday, December 03, 2012 11:00 PM
> To: solr-user@lucene.apache.org
> Subject: Difference between 'bf' and 'boost' when using eDismax
>
>
> Hi there,
>
> I'm not sure if I under
ber 03, 2012 11:00 PM
To: solr-user@lucene.apache.org
Subject: Difference between 'bf' and 'boost' when using eDismax
Hi there,
I'm not sure if I understand this clearly.
'bf' is that final score will be add some value return by bf?
for example-> score + bf = final scor
Hi there,
I'm not sure if I understand this clearly.
'bf' is that final score will be add some value return by bf?
for example-> score + bf = final score
'boost' is that score will be multiply with value that return by boost?
for example-> score * boost = final score
When using both( 'bf' and
: I am not edismax=true as a flag actually does anything (Solr4 beta):
Alexandre: You are 100% correct, this appears to be a bug in the Admin
UI. Thank you for reporting it...
https://issues.apache.org/jira/browse/SOLR-3811
-Hoss
Hello,
I am not edismax=true as a flag actually does anything (Solr4 beta):
'responseHeader'=>{
'status'=>0,
'QTime'=>1,
'params'=>{
'debugQuery'=>'true',
'indent'=>'true',
'edismax'=>'true',
'q'=>'text',
'qf'=>'TitleEN DescEN',
'wt'=>'ruby',
ry((brand:dishwasher^0.5 |
> *itemNo:dishwash* | productType:dishwasher^0.8)) name="parsedquery_toString">+(brand:dishwasher^0.5 | itemNo:dishwash |
> productType:dishwasher^0.8)
>
>
>
>
>
> --
> View this message in context:
> http://lucene.472066.n3.nabble.com/searching-across-multiple-fields-using-edismax-am-i-setting-this-up-right-tp3906334p3907875.html
> Sent from the Solr - User mailing list archive at Nabble.com.
ching-across-multiple-fields-using-edismax-am-i-setting-this-up-right-tp3906334p3907875.html
Sent from the Solr - User mailing list archive at Nabble.com.
=100
>
> this would be an example of a multiple term search across all three of the
> fields
>
> http://bogus:bogus/somecore/select?qt=partItemNoSearch&q=*dishwasher
> 123-xyz*&debugQuery=on&rows=100
>
>
> do i understand this correctly?
>
> thank you,
> mark
>
>
>
>
> --
> View this message in context:
> http://lucene.472066.n3.nabble.com/searching-across-multiple-fields-using-edismax-am-i-setting-this-up-right-tp3906334p3906334.html
> Sent from the Solr - User mailing list archive at Nabble.com.
re/select?qt=partItemNoSearch&q=*dishwasher
123-xyz*&debugQuery=on&rows=100
do i understand this correctly?
thank you,
mark
--
View this message in context:
http://lucene.472066.n3.nabble.com/searching-across-multiple-fields-using-edismax-am-i-setting-this-up-right-tp3906334p3906334
;> WordDelimiterFilterFactory, which is splitting
>> the input stream into tokens on letter/number
>> changes, and capitalization changes. So you're
>> getting "2010" indexed as a separate token and
>> you're also searching on it...
>>
>> Best
> Thx for the reply. But what can I do to avoid getting 2010.
> I wanted a phrase query with underscore, so it would return
> results with underscore2010 only.
For example, you can remove WordDelimeterFilterFactory from your field type
definition.
According to your needs, you can use an other fi
hanges. So you're
> getting "2010" indexed as a separate token and
> you're also searching on it...
>
> Best
> Erick
>
> On Mon, Jun 13, 2011 at 3:07 PM, Tirthankar Chatterjee
> wrote:
>> We are using edismax for query and the query fired is (url
anges, and capitalization changes. So you're
getting "2010" indexed as a separate token and
you're also searching on it...
Best
Erick
On Mon, Jun 13, 2011 at 3:07 PM, Tirthankar Chatterjee
wrote:
> We are using edismax for query and the query fired is (url:_2010)
>
> http://redcarp
There is an (underscore) character before 2010
-Original Message-
From: Tirthankar Chatterjee [mailto:tchatter...@commvault.com]
Sent: Monday, June 13, 2011 3:08 PM
To: solr-user@lucene.apache.org
Subject: Using Edismax
We are using edismax for query and the query fired is (url:_2010
We are using edismax for query and the query fired is (url:_2010)
http://redcarpet2.dm2.commvault.com:27000/solr/select/?q=url:
2010&version=2.2&start=0&rows=10&indent=on&defType=edismax<http://redcarpet2.dm2.commvault.com:27000/solr/select/?q=url:%202010&version=2.
69 matches
Mail list logo