Has anyone had experience using frange with multi-valued fields? In solr 3.5
doing so results in the error: "can not use FieldCache on multivalued field"
Here's the use case. We have multiple years attached to each document and want
to be able to refine by a year range. We're currently usin
As I understand it, auto-warming is the process of populating a new searcher's
caches from cached objects in the old searcher's caches. Let's say that a new
searcher is created to service a new index that came from replication. Because
the new searcher is operating on a new index, how is it po
2012, at 2:51 PM, Russell Black wrote:
> As I understand it, auto-warming is the process of populating a new
> searcher's caches from cached objects in the old searcher's caches. Let's
> say that a new searcher is created to service a new index that came from
> replic
When searching across multiple fields, is there a way to identify which
field(s) resulted in a match without using highlighting or stored fields?
... it's not really perfect
> yet.
> The suggestion to debugQuery gives only, to my experience, the explain
> monster which is good for developers (only).
>
> paul
>
>
> Le 11 mars 2012 à 08:40, William Bell a écrit :
>
>> debugQuery tells you.
>>
&g
One way to do this is to register a servlet filter that places the current
request in a global static ThreadLocal variable, thereby making it available to
your Solr component. It's kind of a hack but would work.
Sent from my phone
On Mar 17, 2012, at 6:53 PM, "SUJIT PAL" wrote:
> Thanks Pra