Large cache settings values - sanity check

2013-08-15 Thread Eoghan Ó Carragáin
Hi, I’m involved in the an open source project called Vufind which uses Solr to search across library catalogue records [1]. The project uses what seems to be very high defaults cache settings in solrconfig.xml [2]: - filterCache (size="30" initialSize="30" autowarmCount="5"),

Re: Spell check component does not return any suggestions

2013-04-04 Thread Eoghan Ó Carragáin
Hi, I think you need to use the alternativeTermCount parameter ( http://wiki.apache.org/solr/SpellCheckComponent#spellcheck.alternativeTermCount) to return suggestions for terms which occur less often than the user-entered term. More discussion here: https://issues.apache.org/jira/browse/SOLR-2585

Fuzzy Suggester and exactMatchFirst

2013-03-17 Thread Eoghan Ó Carragáin
Hi, I've got the Fuzzy Suggester returning results thanks to tips from Robert Muir, but some of the suggestions aren't great. For example, passing spellcheck.q=colla to the standard Suggester gives: collaboration collaborate collaborating collaborations Whereas passing spellcheck.q=colla to th

Re: Analyzing Suggester and Fuzzy Suggester - configuration and comparison

2013-03-15 Thread Eoghan Ó Carragáin
Thanks, Robert. I'm I correct in thinking that queryAnalyzerFieldType isn't needed at all if I'm using spellcheck.q rather than just q? Eoghan On 15 March 2013 20:07, Robert Muir wrote: > On Fri, Mar 15, 2013 at 3:04 PM, Eoghan Ó Carragáin > wrote: > > Hi, > >

Analyzing Suggester and Fuzzy Suggester - configuration and comparison

2013-03-15 Thread Eoghan Ó Carragáin
Hi, I'm interested in using the new Analyzing Suggester described by Mike McCandless [1], but I'm not sure how it should be configured. I've setup my SpellCheckComponent with org.apache.solr.spelling.suggest.Suggester org.apache.solr.spelling.suggest.fst.AnalyzingLookupFactory I think