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
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
Hi
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-fired with fq filter:
fq: status:(11I OR 12I OR
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:
> >
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
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?
In other words will this query make more sense?
q=(blue) AND (make:Volkswagen)
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.
gt;> 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.
>
> --
> Regards,
> Shalin Shekhar Mangar.
>
>
--
View this message in con
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
Consider, I have following 3 fields
I want to query all documents where name:somevalue and actionuser value is
not equal to creationuser value.
Can we do this???
--
View this message in context:
http://www.nabble.com/filter-query-question-tp22863789p22863789.html
Sent from the Solr - User
10 matches
Mail list logo