Re: Auto Complete

2014-08-06 Thread Michael Della Bitta
You'd still need to modify that schema to use the ASCII folding filter. Alternatively, if you want something off the shelf, you might check out Sematext's autocomplete product: http://www.sematext.com/products/autocomplete/index.html Michael Della Bitta Applications Developer o: +1 646 532 3062

Re: Auto Complete

2014-08-06 Thread benjelloun
Hello thanks for the tutorial i test all schema but its not what i need. what i need is to auto complete with an autocorrection like i said before: q="gene" -->autocomplete "genève" with accent 2014-08-05 18:03 GMT+02:00 Michael Della Bitta-2 [via Lucene] < ml-node+s472066n4151261...@n3.nabble.co

Re: Auto Complete

2014-08-05 Thread Michael Della Bitta
In this case, I recommend using the approach that this tutorial uses: http://www.cominvent.com/2012/01/25/super-flexible-autocomplete-with-solr/ Basically the idea is you index the data a few different ways and then use edismax to query them all with different boosts. You'd use the stored version

Re: Auto Complete

2014-08-05 Thread benjelloun
i found this solution but when i test it nothing in suggestion fuzzySuggest org.apache.solr.spelling.suggest.Suggester org.apache.solr.spelling.suggest.fst.FuzzyLookupFactory suggestField suggestFolders true true texts false 2 sug

Re: Auto Complete

2014-08-05 Thread benjelloun
yeah thats true i creat this index just for auto complete here is my schema: the i use "suggestField" for autocomplet like i mentioned above do you have any other configuration which can do what i need ? 2014-08-05 15:19 GMT+02:00 Michael Della Bitta-2 [via Lucene] < ml-node+s472066n415

Re: Auto Complete

2014-08-05 Thread Michael Della Bitta
Unless I'm mistaken, it seems like you've created this index specifically for autocomplete? Or is this index used for general search also? The easy way to understand this question: Is there one entry in your index for each term you want to autocomplete? Or are there multiple entries that might con

Re: Auto Complete

2014-08-05 Thread benjelloun
hello, did you find any solution to this problem ? regards 2014-08-04 16:16 GMT+02:00 Michael Della Bitta-2 [via Lucene] < ml-node+s472066n4150990...@n3.nabble.com>: > How are you implementing autosuggest? I'm assuming you're querying an > indexed field and getting a stored value back. But the

Re: Auto Complete

2014-08-04 Thread benjelloun
if you have another configuration to can solve this problem please share it, thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Auto-Complete-tp4150987p4151002.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Auto Complete

2014-08-04 Thread benjelloun
here is my configuration: suggestDic org.apache.solr.spelling.suggest.Suggester org.apache.solr.spelling.suggest.fst.WFSTLookupFactory suggestFolder suggestField true true suggestFolder/emptyDic.txt

Re: Auto Complete

2014-08-04 Thread Michael Della Bitta
How are you implementing autosuggest? I'm assuming you're querying an indexed field and getting a stored value back. But there are a wide variety of ways of doing it. Michael Della Bitta Applications Developer o: +1 646 532 3062 appinions inc. “The Science of Influence Marketing” 18 East 41st

Re: Auto Complete

2014-08-04 Thread benjelloun
hello you didnt enderstand well my probleme, i give exemple: i have document contain "genève" with accent when i do q="gene" --> autoSuggest "geneve" because of ASCIIFoldingFilterFactory preserveOriginal="true" when i do q="genè" --> autoSuggest "genève" but what i need to is: q="gene" without ac

Re: Auto Complete

2014-08-04 Thread Michael Della Bitta
You need to use this filter in your analysis chain: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.ASCIIFoldingFilterFactory Michael Della Bitta Applications Developer o: +1 646 532 3062 appinions inc. “The Science of Influence Marketing” 18 East 41st Street New York, NY 1

RE: Auto complete with 50TB of data - Need your inputs?

2014-06-05 Thread Toke Eskildsen
bbi123 [bbar...@gmail.com] wrote: > We have a requirement to for large data set like Billing data for example. > The Business wants to do sorting and type ahead functions for it. For > example, when I start typing “8164…” they want to list ALL the unique number > and the associated attributes disp

Re: Auto complete with 50TB of data - Need your inputs?

2014-06-05 Thread Shawn Heisey
On 6/5/2014 10:55 AM, bbi123 wrote: > We have a requirement to for large data set like Billing data for example. > The Business wants to do sorting and type ahead functions for it. For > example, when I start typing “8164…” they want to list ALL the unique number > and the associated attributes d

Re: auto-complete with typo fuzzy suggests

2013-02-13 Thread Jack Krupansky
Try the spellchecker rather than the suggester/auto-complete: http://wiki.apache.org/solr/SpellCheckComponent -- Jack Krupansky -Original Message- From: ALEX PKB Sent: Wednesday, February 13, 2013 2:34 PM To: solr-user@lucene.apache.org Subject: auto-complete with typo fuzzy suggest

Re: Auto-complete phrase

2012-03-28 Thread Rémy Loubradou
Thanks Otis but that's not an option for me. "Should" be pretty easy to do this with Solr, I will still continue to work on it. Great William I will give a try with this method, thanks. On 28 March 2012 06:11, William Bell wrote: > I am also very confused at the use case for the Suggester compo

Re: Auto-complete phrase

2012-03-27 Thread William Bell
I am also very confused at the use case for the Suggester component. With collate on, it will try to combine random words together not the actual phrases that are there. I get better mileage out of EDGE grams and tokenize on whitespace... Left to right... Since that is how most people think. Howe

RE: Auto complete

2008-07-10 Thread sundar shankar
ate: Tue, 8 Jul 2008 23:13:57 +0530> From: [EMAIL PROTECTED]> To: > solr-user@lucene.apache.org> Subject: Re: Auto complete> > He must be using a > nightly build of Solr 1.3 -- I think you can consider> using it as it is > quite stable and close to release.> > On

RE: Auto complete

2008-07-08 Thread sundar shankar
Thanks Shalin. > Date: Tue, 8 Jul 2008 23:13:57 +0530> From: [EMAIL PROTECTED]> To: > solr-user@lucene.apache.org> Subject: Re: Auto complete> > He must be using a > nightly build of Solr 1.3 -- I think you can consider> using it as it is > quite stable and clos

Re: Auto complete

2008-07-08 Thread Shalin Shekhar Mangar
hat you have > EdgeNGramFilterFactory. I didnt find it in the 1.2 Solr version. Which > version are you using for this. 1.3 isnt out yet rite. Is there any other > production version of Solr available that I can use? > > Regards > Sundar > > > > > Subject: Re: Auto compl

RE: Auto complete

2008-07-08 Thread sundar shankar
> Subject: Re: Auto complete> From: [EMAIL PROTECTED]> To: > solr-user@lucene.apache.org> Date: Tue, 8 Jul 2008 11:30:31 +0100> > Hi,> > > This is how we implement our autocomplete feature, excerpt from> schema.xml> > > -First accept the input as is wit

Re: Auto complete

2008-07-08 Thread daniel rosher
Hi, This is how we implement our autocomplete feature, excerpt from schema.xml -First accept the input as is without alteration -Lowercase the input, and eliminate all non a-z0-9 chars to normalize the input -split into multiple tokens with EdgeNGramFilterFactory upto a max of 100 chars, all star