I have a very simple SQL table that I want to import into Solr but because of the features I want for search I can't determine the best schema.
The user will ...
I'm using Solr 1.4.1 and I'm willing to use TermsComponent for AutoComplete. The problem is, I can't get it to match strings with spaces in them. So to say,
terms.fl=name&terms.lower=david&terms.prefix=david&terms.lower.incl=false&indent=true&wt=json
matches all strings ...
One of the ways to go about Google-like auto-completion is to combine shingles and the termvector component in Solr 1.4.
First we generate all n-gram distributions with the shingles component and ...
This JIRA issue and this wiki page imply that there is an up-and-coming component called org.apache.solr.spelling.suggest.Suggester for doing improved auto-complete with Solr. But I'm having trouble trying ...
I am trying to make a Lucene autocomplete using Lucene's Dictionary and spellcheck classes, but so far only successful in making it work for single terms.
I googled and ...
I'm following this tutorial for autocomplete:
http://solr.pl/en/2010/11/15/solr-and-autocomplete-part-2/
The problem is that the suggestions are returned in lowercase. I want to complete titles to be returned instead, with special characters included and ...
I have 2 handlers : one for autocompletion, and one for spellchecking. They are working very well but i want them to be in the same handler (the default ...
I have 2 handlers : one for autocompletion, and one for spellchecking. They are working very well but i want them to be in the same handler (the default one).
I can ...