Re: query with @ and *

2017-09-14 Thread Erick Erickson
See: https://lucidworks.com/2011/11/29/whats-with-lowercasing-wildcard-multiterm-queries-in-solr/ It discusses the general problem of particular filters being able to cope with wildcards or not. Generally any filter that could potentially produce more than one output token per input token is skip

Re: query with @ and *

2017-09-14 Thread Susheel Kumar
You may want to use UAX29URLEmailTokenizerFactory tokenizer into your analysis chain. Thanks, Susheel On Thu, Sep 14, 2017 at 8:46 AM, Shawn Heisey wrote: > On 9/14/2017 5:06 AM, Mannott, Birgit wrote: > > I have a problem when searching on email addresses. > > @ seems to be handled as a speci

Re: query with @ and *

2017-09-14 Thread Shawn Heisey
On 9/14/2017 5:06 AM, Mannott, Birgit wrote: > I have a problem when searching on email addresses. > @ seems to be handled as a special character but I don't find anything about > it in the documentation. > > This is my test data > t...@one.com > t...@two.com Chances are that have analysis define

Re: query with @ and *

2017-09-14 Thread Atita Arora
Hi, Can you give us a little information about the query parser you using in your handler ? Thanks, Ati On Thu, Sep 14, 2017 at 4:36 PM, Mannott, Birgit wrote: > Hi, > > I have a problem when searching on email addresses. > @ seems to be handled as a special character but I don't find anythin

query with @ and *

2017-09-14 Thread Mannott, Birgit
Hi, I have a problem when searching on email addresses. @ seems to be handled as a special character but I don't find anything about it in the documentation. This is my test data t...@one.com t...@two.com searching for test* results both, ok. searching for t...@one.com results the correct one,

Re: Solr DateRange Query with AND and different op types

2016-09-19 Thread Sandeep Khanzode
Hi, Can someone please reply to my query? Let me know if it is not understandable. Thanks. SRK On Monday, September 19, 2016 6:00 PM, Sandeep Khanzode wrote: Hi, Can I not query like this? {!field f=schedule1 op=Contains}[1988-10-22T18:30:00Z TO *] AND -schedule3:[1988-10-22T18:30:00Z

Solr DateRange Query with AND and different op types

2016-09-19 Thread Sandeep Khanzode
Hi, Can I not query like this? {!field f=schedule1 op=Contains}[1988-10-22T18:30:00Z TO *] AND -schedule3:[1988-10-22T18:30:00Z TO *] AND -schedule2:[1988-10-22T18:30:00Z TO *] I keep getting parsing and date math related errors. If I change it to ...schedule1:[1988-10-22T18:30:00Z TO *] AND -sc

Re: join and filter query with AND

2014-03-24 Thread Kranti Parisa
> embedded nested query parsers . That's a fairly new feature compared > to > > > > non-embedded nested query parsers - maybe Yonik could shed some > light. > > > This > > > > may date from when he made a copy of the Lucene query parser for Solr > &g

Re: join and filter query with AND

2014-03-24 Thread Marcin Rzewucki
is > > > may date from when he made a copy of the Lucene query parser for Solr > and > > > added the parsing of embedded nested query parsers to the grammar. It > > seems > > > like the embedded nested query parser is only being applied to a > single, > > > whit

Re: join and filter query with AND

2014-03-21 Thread Kranti Parisa
grammar. It > seems > > like the embedded nested query parser is only being applied to a single, > > white space-delimited term, and not respecting the fact that the term is > a > > quoted phrase. > > > > -- Jack Krupansky > > > > -Original Message--

Re: join and filter query with AND

2014-03-21 Thread Yonik Seeley
; > -- Jack Krupansky > > -Original Message- From: Marcin Rzewucki > Sent: Thursday, March 20, 2014 5:19 AM > To: solr-user@lucene.apache.org > Subject: Re: join and filter query with AND > > > Nope. There is no line break in the string and it is not feed from

Re: join and filter query with AND

2014-03-21 Thread Jack Krupansky
arcin Rzewucki Sent: Thursday, March 20, 2014 5:19 AM To: solr-user@lucene.apache.org Subject: Re: join and filter query with AND Nope. There is no line break in the string and it is not feed from file. What else could be the reason ? On 19 March 2014 17:57, Erick Erickson wrote: It looks

Re: join and filter query with AND

2014-03-21 Thread Kranti Parisa
You may try this (({!join from=inner_id to=outer_id fromIndex=othercore v=$joinQuery} And pass another parameter joinQuery=(city:"Stara Zagora" AND prod:214) Thanks, Kranti K. Parisa http://www.linkedin.com/in/krantiparisa On Fri, Mar 21, 2014 at 4:47 AM, Marcin Rzewucki wrote: > Hi, > > Eri

Re: join and filter query with AND

2014-03-21 Thread Marcin Rzewucki
Hi, Erick, I do not get your point. What kind of servlet container settings do you mean and why do you think they might be related ? I'm using Jetty and never set any limit for packet size. My query does not work only in case of double quotes and space between words. Why? It works in other cases a

Re: join and filter query with AND

2014-03-20 Thread Erick Erickson
Well, the error message really looks like your input is getting chopped off. It's vaguely possible that you have some super-low limit in your servlet container configuration that is only letting very small packets through. What I'd do is look in the Solr log file to see exactly what is coming thr

Re: join and filter query with AND

2014-03-20 Thread Marcin Rzewucki
Nope. There is no line break in the string and it is not feed from file. What else could be the reason ? On 19 March 2014 17:57, Erick Erickson wrote: > It looks to me like you're feeding this from some > kind of text file and you really _do_ have a > line break after "Stara > > Or have a line

Re: join and filter query with AND

2014-03-19 Thread Erick Erickson
It looks to me like you're feeding this from some kind of text file and you really _do_ have a line break after "Stara Or have a line break in the string you paste into the URL or something similar. Kind of shooting in the dark though. Erick On Wed, Mar 19, 2014 at 8:48 AM, Marcin Rzewucki wro

join and filter query with AND

2014-03-19 Thread Marcin Rzewucki
Hi, I have the following issue with join query parser and filter query. For such query: *:* (({!join from=inner_id to=outer_id fromIndex=othercore}city:"Stara Zagora")) AND (prod:214) I got error: org.apache.solr.search.SyntaxError: Cannot parse 'city:"Stara': Lexical error at line 1, column

Re: Query with AND|OR operator with Dismaxrequest

2009-05-19 Thread dabboo
hat possible. > > Otis > -- > Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch > > > > - Original Message >> From: prerna07 >> To: solr-user@lucene.apache.org >> Sent: Monday, May 18, 2009 6:05:50 AM >> Subject: Query with AND|OR operato

Re: Query with AND|OR operator with Dismaxrequest

2009-05-18 Thread Otis Gospodnetic
.org > Sent: Monday, May 18, 2009 6:05:50 AM > Subject: Query with AND|OR operator with Dismaxrequest > > > > Hi, > > I am not getting correct results with a Query which has multiple AND | OR > operator. > > Query Format q=((A AND B) OR (C OR D) OR E)

Query with AND|OR operator with Dismaxrequest

2009-05-18 Thread prerna07
w if anyone has faced the same problem and if there is any way to make the query work with dismaxrequest. Thanks, Prerna -- View this message in context: http://www.nabble.com/Query-with-AND%7COR-operator-with-Dismaxrequest-tp23594592p23594592.html Sent from the Solr - User mailing list archiv

Re: How to support query with AND / OR?

2008-12-21 Thread Chris Hostetter
: We need to enhance our existing solr search to support query with 'AND' : /'OR'. That is, when user enters "(breast OR liver) AND cancer" in the query : field, the documents with 'liver' & 'cancer' and the documents with 'breast' :

How to support query with AND / OR?

2008-12-17 Thread Qingdi
Hi, We need to enhance our existing solr search to support query with 'AND' /'OR'. That is, when user enters "(breast OR liver) AND cancer" in the query field, the documents with 'liver' & 'cancer' and the documents with 'breast' &