autocomplete « Tools « Java Lucene Q&A

Home
Java Lucene Q&A
1.Database
2.Development
3.document
4.Field
5.index
6.lucene
7.lucene.net
8.nutch
9.query
10.solr
11.Tools
Java Lucene Q&A » Tools » autocomplete 

1. Simple Solr schema problem for autocomplete    stackoverflow.com

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 ...

2. Solr TermsComponent: Usage of wildcards    stackoverflow.com

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 ...

3. Autocomplete via shingles and termvector component    stackoverflow.com

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 ...

4. Solr Suggester component for autocompletion    stackoverflow.com

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 ...

5. Lucene Autocomplete with multiple words using Shingle filter    stackoverflow.com


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 ...

6. Does Solr Suggester support infix search?    stackoverflow.com

The wiki page of the Solr Suggester component does not mention how the provided field is searched? Is it a prefix only, or is there also an infix search ...

7. Solr 3.1 autocomplete with non-lowercase results    stackoverflow.com

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 ...

8. SolR : Autocompletion and SpellChecking    stackoverflow.com

First question :

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 ...

9. SolR : Autocompletion AND SpellChecking together    stackoverflow.com

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 ...

10. SOLR terms autocomplete returns not all words    stackoverflow.com

I have a problem with SOLR terms. My query is

http://localhost:8080/solr/terms?terms=true&terms.lower.incl=false&indent=true&wt=json&terms.fl=a_dm_testo&terms.prefix=quel
Response from SOLR
{"responseHeader":{
    "status":0,
    "QTime":0},
  "terms":{
    "a_dm_testo":[
      "quell",1]}}
But ...

11. QueryElevationComponent - Can I use it with autocomplete?    stackoverflow.com

My document looks like this

Product
  id
  name
  color
I have an autocomplete widget that queries Solr to provide autocomplete suggestions. I use a Dismax requestHandler for search that looks like ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.