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
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
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
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
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
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
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
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.
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
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
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
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
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
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
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
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
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
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
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
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
> 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
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
22 matches
Mail list logo