Re: Filter query question

2018-04-12 Thread Shawn Heisey
On 4/12/2018 1:46 AM, LOPEZ-CORTES Mariano-ext wrote: In our search application we have one facet filter (Status) Each status value corresponds to multiple values in the Solr database Example : Status : Initialized --> status in solr = 11I, 12I, 13I, 14I, ... On status value click, search is

Re: Filter query question

2018-04-12 Thread Emir Arnautović
Hi, What is the number of these status indicators? It is expected to have slower query if you have more clauses since Solr/Lucene has to load postings for each term and then OR them. The real question is why it is constantly slow since you are using fq and it should be cached. Did you disable fi

Re: Filter Query question

2010-08-30 Thread Eric Grobler
Hi Grant, Thanks for the explanation. Regards ericz On Mon, Aug 30, 2010 at 3:22 PM, Grant Ingersoll wrote: > > On Aug 30, 2010, at 7:20 AM, Eric Grobler wrote: > > > Hi Solr Community > > > > If you use a filter like: > > q=*:* > > fq=make:Volkswagen > > > > and then the next query is: > >

Re: Filter Query question

2010-08-30 Thread Grant Ingersoll
On Aug 30, 2010, at 7:20 AM, Eric Grobler wrote: > Hi Solr Community > > If you use a filter like: > q=*:* > fq=make:Volkswagen > > and then the next query is: > q=blue > fq=make:Volkswagen > > will Solr use the filter cache before the main query, or only after a "blue" > subset? The firs

Re: filter query question

2009-04-03 Thread Shalin Shekhar Mangar
On Fri, Apr 3, 2009 at 2:04 PM, Ashish P wrote: > > Another question what is the meaning of this syntax > [* TO *] > > It means match all tokens from the beginning to the end. -- Regards, Shalin Shekhar Mangar.

Re: filter query question

2009-04-03 Thread Ashish P
Thanks Shalin. Another question what is the meaning of this syntax [* TO *] Thanks, Ashish Shalin Shekhar Mangar wrote: > > On Fri, Apr 3, 2009 at 1:32 PM, Ashish P wrote: > >> >> I want to query all documents where name:somevalue and actionuser value >> is >> not equal to creationuser valu

Re: filter query question

2009-04-03 Thread Shalin Shekhar Mangar
On Fri, Apr 3, 2009 at 1:32 PM, Ashish P wrote: > > I want to query all documents where name:somevalue and actionuser value is > not equal to creationuser value. > > Can we do this??? Nope. But you can create a new field which holds true if actionuser != creationuser and filter on that. -- Re