Re: Filter the Solr autosuggestion in Hybris

2018-12-11 Thread Ankit Patel
Please note: here we have autosuggestion with `SpellCheckComponent`, which we want to filter. Here is the question https://stackoverflow.com/questions/53707224/filter-the-solr-autosuggestion-in-hybris On Tue, 11 Dec 2018 at 17:02 Ankit Patel wrote: > I am trying to implement Solr cont

Filter the Solr autosuggestion in Hybris

2018-12-11 Thread Ankit Patel
I am trying to implement Solr context filtering to filter auto-suggestion result based on the category value. *schema.xml*

RE: autosuggestion indexing in a solr cluster

2018-02-23 Thread Deepak Udapudi
hula ; Anupama Pullela ; Segar Soundiramourthy Subject: autosuggestion indexing in a solr cluster Hi all, We are using a Solr cluster. We have Solr configuration for auto-suggestions as shown below. Specialty specialty speci

autosuggestion indexing in a solr cluster

2018-02-23 Thread Deepak Udapudi
Hi all, We are using a Solr cluster. We have Solr configuration for auto-suggestions as shown below. Specialty specialty specialty AnalyzingInfixLookupFactory specialty_suggester_infix_dir DocumentDictionaryFactory

Re: Using Context field unable to get autosuggestion for zip code having '-'.

2018-02-08 Thread Alessandro Benedetti
With that configuration you want to auto suggest Office names filtering them by zip code. Not sure why you perform an ngram analysis though. How do you want to filter by zip code ? Exact Search ? Edge ngram ? Regards - --- Alessandro Benedetti Search Consultant, R&D Software En

Using Context field unable to get autosuggestion for zip code having '-'.

2018-02-08 Thread Nareshkumar P
Hi Team, Problem: Unable to get autosuggestion for zip code having '-'. We are using the context field as part of autosuggestion search. when we try with context search, we are not getting results for zip code having '-', ex:"92240-3064". Hence we did following th

Re: Autosuggestion

2017-04-13 Thread OTH
Hello So, from what I've picked up so far: FST only matches from the beginning of the input, but can handle spelling errors and do stemming. AnalyzingInfix can't handle spelling errors or stemming but can match from the middle of the string. (Is there anyway to achieve both of the functionalities a

Re: Autosuggestion

2017-04-13 Thread Erick Erickson
bq: FST-based vs AnalyzingInfix They are two totally different things. FST-based suggesters are very fast and compact. But they only match from the beginning of the input. AnalyzingInfix creates a "sidecar" index that's searched like a normal index and the _field_ is returned. Thus analyzinginfi

Re: Autosuggestion

2017-04-13 Thread OTH
Thanks, that's very helpful! The third link especially is quite helpful. Is there any recommendation regarding using FST-based vs AnalyzingInfix suggesters? Thanks On Wed, Apr 12, 2017 at 6:23 PM, Andrea Gazzarini wrote: > Hi, > I think you got an old post. I would have a look at the built-in fe

Re: Autosuggestion

2017-04-12 Thread Andrea Gazzarini
Hi, I think you got an old post. I would have a look at the built-in feature, first. These posts can help you to get a quick overview: https://cwiki.apache.org/confluence/display/solr/Suggester http://alexbenedetti.blogspot.it/2015/07/solr-you-complete-me.html https://lucidworks.com/2015/03/04/

Autosuggestion

2017-04-12 Thread OTH
Hello, Is there any recommended way to achieve auto-suggestion in textboxes using Solr? I'm new to Solr, but right now I have achieved this functionality by using an example I found online, doing this: I added a copy field, which is of the following type:

Re: How to implement Autosuggestion

2016-04-06 Thread chandan khatri
Hi Alessandro, Thanks for replying! Here are my answers inline. 1. "First of all, simple string autosuggestion or document autosuggestion ? ( with more additional field to show then the label) Document autosuggestions 2. Are you interested in the analysis for the text to suggest ?

Re: How to implement Autosuggestion

2016-04-06 Thread chandan khatri
Hi Alessandro, Thanks for replying! Here are my answers inline. On Mon, Apr 4, 2016 at 6:34 PM, Alessandro Benedetti wrote: > Hi Chandan, > I will answer as my previous answer to a similar topic that got lost : > "First of all, simple string autosuggestion or document

Re: How to implement Autosuggestion

2016-04-04 Thread Alessandro Benedetti
Hi Chandan, I will answer as my previous answer to a similar topic that got lost : "First of all, simple string autosuggestion or document autosuggestion ? ( with more additional field to show then the label) Are you interested in the analysis for the text to suggest ? Fuzzy suggestions ?

Re: How to implement Autosuggestion

2016-04-03 Thread Reth RM
work around(although not accurate one) that I can think of is to include the category value to the same field with pipe separation and extract from it? On Sun, Apr 3, 2016 at 11:41 AM, chandan khatri wrote: > Hi All, > > I've a query regarding autosuggestion. My use case is as

How to implement Autosuggestion

2016-04-02 Thread chandan khatri
Hi All, I've a query regarding autosuggestion. My use case is as below: 1. User enters product name (say Nokia) 2. I want suggestions along with the category with which the product belongs. (e.g Nokia belongs to "electronics" and "mobile" category) so I want suggestion

Re: How to implement Autosuggestion

2016-03-30 Thread chandan khatri
Hi All, I've similar query regarding autosuggestion. My use case is as below: 1. User enters product name (say Nokia) 2. I want suggestions along with the category with which the product belongs. (e.g Nokia belongs to "electronics" and "mobile" category) so I want

Re: How to implement Autosuggestion

2016-03-30 Thread Alessandro Benedetti
Hi Mugeesh, autocompletion world is not that simple as you would expect. Which kind of auto suggestion are you interested in ? First of all, simple string autosuggestion or document autosuggestion ? ( with more additional field to show then the label) Are you interested in the analysis for the

Re: How to implement Autosuggestion

2016-03-28 Thread Reth RM
Solr AnalyzingInfix suggester component: https://lucidworks.com/blog/2015/03/04/solr-suggester/ On Mon, Mar 28, 2016 at 7:57 PM, Mugeesh Husain wrote: > Hi, > > I am looking for the best way to implement autosuggestion in ecommerce > using solr or elasticsearch. > > I

How to implement Autosuggestion

2016-03-28 Thread Mugeesh Husain
Hi, I am looking for the best way to implement autosuggestion in ecommerce using solr or elasticsearch. I guess using ngram analyzer is not a good way if data is big. Please suggest me any link or your opinion ? Thanks Mugeesh -- View this message in context: http://lucene.472066.n3

Re: Different options for autocomplete/autosuggestion

2011-08-02 Thread Erick Erickson
; View this message in context: > http://lucene.472066.n3.nabble.com/Different-options-for-autocomplete-autosuggestion-tp2678899p3203032.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: Different options for autocomplete/autosuggestion

2011-07-27 Thread scorpking
erent-options-for-autocomplete-autosuggestion-tp2678899p3203032.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Different options for autocomplete/autosuggestion

2011-03-18 Thread Kai Schlamp-2
One autosuggestion solution would be to query normal text fields. That way you have the whole feature set of Solr (like NGram filtered text for infix search or field queries to scope the search). If you also store the data of the text field you directly have the results to use as autosuggestions

RE: Different options for autocomplete/autosuggestion

2011-03-16 Thread Robert Petersen
tocomplete/autosuggestion Hi, I actually don't follow how field collapsing helps with autocompletion...? Over at http://search-lucene.com we eat our own autocomplete dog food: http://sematext.com/products/autocomplete/index.html . Tasty stuff. Otis Sematext :: http://sematext.com/ :: Solr -

Re: Different options for autocomplete/autosuggestion

2011-03-15 Thread Otis Gospodnetic
ucene ecosystem search :: http://search-lucene.com/ - Original Message > From: Kai Schlamp > To: solr-user@lucene.apache.org > Sent: Mon, March 14, 2011 11:52:48 PM > Subject: Re: Different options for autocomplete/autosuggestion > > @Robert: That sounds interesting

Re: Different options for autocomplete/autosuggestion

2011-03-14 Thread Kai Schlamp
ery result, cause of the document nature of Solr. In my opinion field collapsing seems to be most promising for a full featured autosuggestion solution. Unfortunately it is not available for Solr 1.4.x or 3.x (I tried patching those branches several times without success). 2011/3/1

Re: Different options for autocomplete/autosuggestion

2011-03-14 Thread Bill Bell
queries >> > >> >* Terms >> >+ available in stable 1.4.x >> >+ infix query by using regex in 3.x >> >- only prefix query in 1.4.x >> >- regexp may be slow (just a guess) >> > >> >* Suggestions >> >? Did not try that yet. Does it a

Re: Different options for autocomplete/autosuggestion

2011-03-14 Thread Andy
Does it allow infix queries? > > > >* Field Collapsing > >+ no duplications > >- only available in 4.x branch > >? Does it work together with highlighting? That would > be a big plus. > > > >What are your experiences regarding > autocomplete/autosuggestion with > >Solr? Any additions, suggestions or corrections? What > do you prefer? > > > >Kai > > >

Re: Different options for autocomplete/autosuggestion

2011-03-14 Thread Bill Bell
stions >? Did not try that yet. Does it allow infix queries? > >* Field Collapsing >+ no duplications >- only available in 4.x branch >? Does it work together with highlighting? That would be a big plus. > >What are your experiences regarding autocomplete/autosuggestion with >Solr? Any additions, suggestions or corrections? What do you prefer? > >Kai

RE: Different options for autocomplete/autosuggestion

2011-03-14 Thread Robert Petersen
rm the grouping. -Original Message- From: Robert Petersen [mailto:rober...@buy.com] Sent: Monday, March 14, 2011 4:25 PM To: solr-user@lucene.apache.org Subject: RE: Different options for autocomplete/autosuggestion I am doing this very differently. We are on solr 1.4.0 and I accomplish the c

RE: Different options for autocomplete/autosuggestion

2011-03-14 Thread Robert Petersen
[mailto:kai.schl...@googlemail.com] On Behalf Of Kai Schlamp Sent: Monday, March 14, 2011 2:12 PM To: solr-user@lucene.apache.org Subject: Re: Different options for autocomplete/autosuggestion Robert, thanks for your answer. What Solr version do you use? 4.0? As mentioned in my other post here I tried to patch

Re: Different options for autocomplete/autosuggestion

2011-03-14 Thread Kai Schlamp
- > From: Kai Schlamp [mailto:kai.schl...@googlemail.com] > Sent: Sunday, March 13, 2011 11:14 PM > To: solr-user@lucene.apache.org > Subject: Different options for autocomplete/autosuggestion > > Hi. > > There seems to be several options for implementing an > autocomplete/au

RE: Different options for autocomplete/autosuggestion

2011-03-14 Thread Robert Petersen
...@googlemail.com] Sent: Sunday, March 13, 2011 11:14 PM To: solr-user@lucene.apache.org Subject: Different options for autocomplete/autosuggestion Hi. There seems to be several options for implementing an autocomplete/autosuggestions feature with Solr. I am trying to summarize those possibilities together

Different options for autocomplete/autosuggestion

2011-03-13 Thread Kai Schlamp
experiences regarding autocomplete/autosuggestion with Solr? Any additions, suggestions or corrections? What do you prefer? Kai

Facet as Autosuggestion

2010-06-28 Thread stockii
the user search for "bluetooth laser" he maybe does not find the "bluetooth laser maus" ... why can facet not give only 2 words back ? is there a similar option like in the TermsComponent: terms.lower.incl={true|false} ??? -- View this message in context: http://lucene.472066.n3.