frange with multi-valued fields

2012-01-20 Thread Russell Black
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

Auto-warming for new indexes

2012-03-07 Thread Russell Black
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

Re: Auto-warming for new indexes

2012-03-07 Thread Russell Black
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

Knowing which fields matched a search

2012-03-09 Thread Russell Black
When searching across multiple fields, is there a way to identify which field(s) resulted in a match without using highlighting or stored fields?

Re: Knowing which fields matched a search

2012-03-12 Thread Russell Black
... 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

Re: Any way to get reference to original request object from within Solr component?

2012-03-18 Thread Russell Black
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