Re: Solr suggester : duplicate suggestions

2020-01-10 Thread Dhanesh Radhakrishnan
Is 'and' present in your stopwords list? > > I think posting the query and results for both cases of first problem will > help us more. > > On Thu, 9 Jan 2020 at 20:50, Dhanesh Radhakrishnan > wrote: > > > Dear all, > > I'm facing two issues with solr

Re: Solr suggester : duplicate suggestions

2020-01-10 Thread Paras Lehana
and' present in your stopwords list? I think posting the query and results for both cases of first problem will help us more. On Thu, 9 Jan 2020 at 20:50, Dhanesh Radhakrishnan wrote: > Dear all, > I'm facing two issues with solr suggester component. > > *First * > If I t

Solr suggester : duplicate suggestions

2020-01-09 Thread Dhanesh Radhakrishnan
Dear all, I'm facing two issues with solr suggester component. *First * If I typed "Fire and safety", I'll get the result. But If I type "Fire & safety" suggester is not showing *Second* I'm getting duplicate suggestions in suggester

Re: Error with Solr Suggester using lookupIml = FreeTextLookupFactory

2019-11-06 Thread Erick Erickson
This setting is pretty dangerous. It’ll build the suggester every time the Solr instance starts. The DocumentDictionaryFactory will read _every_ document in your index to extract the stored “suggest” field and create the dictionary. But this points to the fact that you hadn’t built the dictionar

Re: Error with Solr Suggester using lookupIml = FreeTextLookupFactory

2019-11-06 Thread Tyrone Tse
It's working now that I changed the solrconfig.xml to mySuggester FreeTextLookupFactory DocumentDictionaryFactory suggest 3 text_en_splitting *true* On Wed, Nov 6, 2019 at

Re: Error with Solr Suggester using lookupIml = FreeTextLookupFactory

2019-11-06 Thread Tyrone Tse
What's the command to build it On Wed, Nov 6, 2019 at 3:06 PM Mikhail Khludnev wrote: > Hello, > > Have you build suggester before requesting? > > On Wed, Nov 6, 2019 at 12:50 PM Tyrone Tse wrote: > > > Solr version 8.1.1 > > > > My schema > > > > > multiValued="false" indexed="true"/> > > >

Re: Error with Solr Suggester using lookupIml = FreeTextLookupFactory

2019-11-06 Thread Mikhail Khludnev
Hello, Have you build suggester before requesting? On Wed, Nov 6, 2019 at 12:50 PM Tyrone Tse wrote: > Solr version 8.1.1 > > My schema > > multiValued="false" indexed="true"/> > > > solconfig.xml > > > > mySuggester > FreeTextLookupFactory >

Error with Solr Suggester using lookupIml = FreeTextLookupFactory

2019-11-06 Thread Tyrone Tse
Solr version 8.1.1 My schema solconfig.xml mySuggester FreeTextLookupFactory DocumentDictionaryFactory suggest 3 text_en_splitting false tru

Behavior of a Solr suggester using spellchecker

2019-10-22 Thread Cedric Ulmer
Dear Solr community, I am facing a behavior with a suggest request handler that does not look normal to me, and I would like to understand. * Here is the configuration of the suggest component : suggest org.apa

Re: Problem with solr suggester in case of non-ASCII characters

2019-07-31 Thread Szűcs Roland
Hi Erick, Thanks your advice. I already removed it from the field definition used by the suggester and it works great. I will consider to took it from the entire processing of the other fields. I have only 7000 docs with index size of 18MB so far, so the memory footprint is not a key issue for me

Re: Problem with solr suggester in case of non-ASCII characters

2019-07-31 Thread Erick Erickson
Roland: Have you considered just not using stopwords anywhere? Largely they’re a holdover from a long time ago when every byte counted. Plus using stopwords has “interesting” issues with things like highlighting and phrase queries and the like. Sure, not using stopwords will make your index lar

Re: Problem with solr suggester in case of non-ASCII characters

2019-07-30 Thread Szűcs Roland
Hi Furkan, Thanks the suggestion, I always forget the most effective debugging tool the analysis page. It turned out that "Jó" was a stop word and it was eliminated during the text analysis. What I will do is to create a new field type but without stop word removal and I will use it like this: sh

Re: Problem with solr suggester in case of non-ASCII characters

2019-07-30 Thread Furkan KAMACI
Hi Roland, Could you check Analysis tab ( https://lucene.apache.org/solr/guide/8_1/analysis-screen.html) and tell how the term is analyzed for both query and index? Kind Regards, Furkan KAMACI On Tue, Jul 30, 2019 at 4:50 PM Szűcs Roland wrote: > Hi All, > > I have an author suggester (searchc

Problem with solr suggester in case of non-ASCII characters

2019-07-30 Thread Szűcs Roland
Hi All, I have an author suggester (searchcomponent and the related request handler) defined in solrconfig: > author AnalyzingInfixLookupFactory DocumentDictionaryFactory BOOK_productAuthor short_text_hu suggester_infix_author false false

Re: SOLR Suggester returns either the full field value or single terms only

2019-06-20 Thread Mark H. Wood
On Wed, Jun 19, 2019 at 12:20:43PM -0700, ppunet wrote: > As the SuggeterComponent provides the 'entire content' of the field in the > suggestions. How is it possible to have Suggester to return only part of the > content of the field, instead of the entire content, which in my scenario > quite lon

Re: SOLR Suggester returns either the full field value or single terms only

2019-06-19 Thread ppunet
Hey, As the SuggeterComponent provides the 'entire content' of the field in the suggestions. How is it possible to have Suggester to return only part of the content of the field, instead of the entire content, which in my scenario quite long? -- Sent from: http://lucene.472066.n3.nabble.com/Sol

Re: Solr Suggester component not returning any results

2019-03-19 Thread Zheng Lin Edwin Yeo
Hi, Will you be able to post your configurations for your /suggest requestHandler in solrconfig.xml? Regards, Edwin On Wed, 20 Mar 2019 at 02:40, Deoxyribonucleic_DNA ... < deoxyribonucleic_...@hotmail.com> wrote: > Hi, I'm trying to implement the suggester component in Solr, based off > the t

Solr Suggester component not returning any results

2019-03-19 Thread Deoxyribonucleic_DNA ...
Hi, I'm trying to implement the suggester component in Solr, based off the tutorial: https://lucene.apache.org/solr/guide/7_7/suggester.html#suggester-search-component-parameters I'm not getting any errors about how the suggester is set up or anything, but when I try to use it I get 0 results

Re: Scores with Solr Suggester

2018-07-04 Thread Alessandro Benedetti
Hi Christine, it depends on the suggester implementation, the one that got closer in having a score implementation is the BlendedInfix[1] but it is still in the TO DO phase. Feel free to contribute it if you like ! [1] https://sease.io/2018/06/apache-lucene-blendedinfixsuggester-how-it-works-bugs-

Re: Scores with Solr Suggester

2018-07-03 Thread Christian Ortner
Hi Christine, suggesters work differently than regular search as they complete an input query, usually based on a state machine built from a dictionary. If you want the similarity of input and suggestion, you can create a search component to compute it yourself and set the value in the payload fie

Scores with Solr Suggester

2018-07-02 Thread Buckler, Christine
Is it possible to return a score field for Suggester results like it does with standard search? I am looking for the score which quantifies how close of a match between type entered and suggestion result (not the weight associated with the suggestion). Is this possible? Christine Buckler [id:im

Solr suggester build takes a very long time

2017-12-11 Thread ruby
So when following command is run to build solr suggester: ?suggest.build=true It takes a very long time to finish. I found out that this is because each time dictionary is built, it does not build delta, it rebuilds the entire dictionary. Is there a way to speed up the suggester build time? TIA

Solr suggester query with quotes produces different results

2017-07-01 Thread Angel Todorov
Hi guys, I have the Suggester configured using the FreeTextFactory. Noticed that if I dont use quotation marks, I only get single term results. If i use quotation marks around my query, then I only get results that are comprised of multiple terms. There is no configuration that would return both t

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-27 Thread Angel Todorov
ideo g\"":{"numFound":10,"suggestions":[{"term":"g eo","weight":952090016707589760,"payload":""},{"term":"g em","weight":297528130221121792,"payload":""},{"term"

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-27 Thread alessandro.benedetti
heers - --- Alessandro Benedetti Search Consultant, R&D Software Engineer, Director Sease Ltd. - www.sease.io -- View this message in context: http://lucene.472066.n3.nabble.com/SOLR-Suggester-returns-either-the-full-field-value-or-single-terms-only-tp4342763p4342987.html Sent from the Solr - Use

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-26 Thread Angel Todorov
, you will have this > > behavior > > : > > > > q= ama > > result : amaz search engin > > > > So it is better to have this lookup strategy configured on top of a light > > analysed field ( or copyfield). > > > > > > > > > > &

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-26 Thread govind nitk
ro Benedetti > Search Consultant, R&D Software Engineer, Director > Sease Ltd. - www.sease.io > -- > View this message in context: http://lucene.472066.n3. > nabble.com/SOLR-Suggester-returns-either-the-full-field- > value-or-single-terms-only-tp4342763p4342807.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-26 Thread alessandro.benedetti
( or copyfield). - --- Alessandro Benedetti Search Consultant, R&D Software Engineer, Director Sease Ltd. - www.sease.io -- View this message in context: http://lucene.472066.n3.nabble.com/SOLR-Suggester-returns-either-the-full-field-value-or-single-terms-only-tp4342763p434

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-26 Thread govind nitk
R&D Software Engineer, Director > Sease Ltd. - www.sease.io > -- > View this message in context: http://lucene.472066.n3. > nabble.com/SOLR-Suggester-returns-either-the-full-field- > value-or-single-terms-only-tp4342763p4342790.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-26 Thread alessandro.benedetti
Benedetti Search Consultant, R&D Software Engineer, Director Sease Ltd. - www.sease.io -- View this message in context: http://lucene.472066.n3.nabble.com/SOLR-Suggester-returns-either-the-full-field-value-or-single-terms-only-tp4342763p4342790.html Sent from the Solr - User mailing list arc

Re: SOLR Suggester returns either the full field value or single terms only

2017-06-25 Thread govind nitk
Hi Angel, Please Look at these documents. 1. https://home.apache.org/~ctargett/RefGuidePOC/jekyll-full/suggester.html 2. https://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.ShingleFilterFactory Regards, Govind On Mon, Jun 26, 2017 at 3:12 AM, Angel Todorov wrote: > Hi guys, >

SOLR Suggester returns either the full field value or single terms only

2017-06-25 Thread Angel Todorov
Hi guys, I am trying to configure the Suggester in a way that i get google-style auto suggestions: - I don't want the suggestions to be the _whole_ field value - I don't want the suggestions to be single terms For example, if I have a field that has the value "The brown fox jumped over the fence

Re: Solr Suggester

2016-12-22 Thread Michael Kuhlmann
For the suggester, the field must be indexed. It's not necessary to have it stored. Best, Michael Am 22.12.2016 um 11:24 schrieb Furkan KAMACI: > Hi Emir, > > As far as I know, it should be enough to be stored=true for a suggestion > field? Should it be both indexed and stored? > > Kind Regards,

Re: Solr Suggester

2016-12-22 Thread Furkan KAMACI
Hi Emir, As far as I know, it should be enough to be stored=true for a suggestion field? Should it be both indexed and stored? Kind Regards, Furkan KAMACI On Thu, Dec 22, 2016 at 11:31 AM, Emir Arnautovic < emir.arnauto...@sematext.com> wrote: > That is because my_field_2 is not indexed. > > Re

Re: Solr Suggester

2016-12-22 Thread Emir Arnautovic
That is because my_field_2 is not indexed. Regards, Emir On 21.12.2016 18:04, Furkan KAMACI wrote: Hi All, I've a field like that: When I run a suggester on my_field_1 it returns response. However my_field_2 doesn't. I've defined suggester as: suggester FuzzyLooku

Solr Suggester

2016-12-21 Thread Furkan KAMACI
Hi All, I've a field like that: When I run a suggester on my_field_1 it returns response. However my_field_2 doesn't. I've defined suggester as: suggester FuzzyLookupFactory DocumentDictionaryFactory What can be the reason? Kind Regards, Furkan KAMACI

Re: Solr Suggester (AnalyzingInfix n BlendedInfix)

2016-09-29 Thread Erick Erickson
Mind you I have no proof that this will cure the problem in 5.2.1, but it seems like it'd be quick to test Good Luck! Erick On Wed, Sep 28, 2016 at 8:51 PM, Manohar Sripada wrote: > Sure Erick! I will try applying the patch. > > Thanks > > On Wednesday, September 28, 2016, Erick Erickson >

Re: Solr Suggester (AnalyzingInfix n BlendedInfix)

2016-09-28 Thread Manohar Sripada
Sure Erick! I will try applying the patch. Thanks On Wednesday, September 28, 2016, Erick Erickson wrote: > AnalyzingInfixSuggester is a mini Solr index, it's working > as designed by returning the choices you see. I don't think > you can persuade it to do what you want OOB. > > I took a quick

Re: Solr Suggester (AnalyzingInfix n BlendedInfix)

2016-09-28 Thread Erick Erickson
AnalyzingInfixSuggester is a mini Solr index, it's working as designed by returning the choices you see. I don't think you can persuade it to do what you want OOB. I took a quick look at SOLR-7865 and it's a very simple fix, just 3 lines of code change and the rest is test code. Could you consider

Solr Suggester (AnalyzingInfix n BlendedInfix)

2016-09-28 Thread Manohar Sripada
I am implementing auto suggestion on Business Name. I used BlendedInfixLookupFactory which worked in all my uses until I encountered into this bug (https://issues.apache.org/jira/browse/SOLR-7865), where suggest.count doesn't work in Solr 5.2.1. But, I can't upgrade anytime soon. :( I tried using

Re: Solr Suggester no results

2016-08-25 Thread Scott Vanderbilt
ng of the > field... > > Best, > Erick > > On Thu, May 5, 2016 at 1:05 AM, Grigoris Iliopoulos > wrote: >> Hi there, >> >> I want to use the Solr suggester component for city names. I have the >> following settin

Re: Solr Suggester no results

2016-08-25 Thread Bradley Belyeu
e > field... > > Best, > Erick > > On Thu, May 5, 2016 at 1:05 AM, Grigoris Iliopoulos > wrote: >> Hi there, >> >> I want to use the Solr suggester component for city names. I have the >> following settings:

Re: Solr Suggester no results

2016-08-25 Thread Scott Vanderbilt
probably don't want to specify suggest.dictionary in your query, that's already specified in your config. And it looks like you're alive to the fact that with that setup capitalization matters as does the fact that these suggestions be matched from the beginning of the field... Be

Is there a way to filter the results based on weight - SOLR suggester?

2016-07-27 Thread bbarani
-the-results-based-on-weight-SOLR-suggester-tp4289286.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: SOLR Suggester | CFQ Variable | - not supported

2016-07-20 Thread Rajesh Kapur
; > > >> > I am still facing this issue. Anyone can help me in this. > > >> > > > >> > Thanks > > >> > > > >> > On 14-Jul-2016 1:15 PM, "Rajesh Kapur" > > wrote: > > >> > > > >> >>

Re: SOLR Suggester | CFQ Variable | - not supported

2016-07-20 Thread Alessandro Benedetti
t;> > On 14-Jul-2016 1:15 PM, "Rajesh Kapur" > wrote: > >> > > >> >> Hi, > >> >> > >> >> I am facing issue while implementing suggester for my project where I > >> am > >> >> passing CFQ value having - in between, b

Re: SOLR Suggester | CFQ Variable | - not supported

2016-07-19 Thread Rajesh Kapur
Anyone can help me in this. >> > >> > Thanks >> > >> > On 14-Jul-2016 1:15 PM, "Rajesh Kapur" wrote: >> > >> >> Hi, >> >> >> >> I am facing issue while implementing suggester for my project where I >> am &g

Re: SOLR Suggester | CFQ Variable | - not supported

2016-07-17 Thread Rajesh Kapur
g issue while implementing suggester for my project where I am > >> passing CFQ value having - in between, but it is not giving me desired > >> output. > >> > >> Could you please let me know what should I do so that SOLR suggester > >> starts accepting - in CFQ parameters. > >> > >> Thanks > >> Rajesh Kapur > >> >

Re: SOLR Suggester | CFQ Variable | - not supported

2016-07-17 Thread Erick Erickson
t;> >> I am facing issue while implementing suggester for my project where I am >> passing CFQ value having - in between, but it is not giving me desired >> output. >> >> Could you please let me know what should I do so that SOLR suggester >> starts accepting - in CFQ parameters. >> >> Thanks >> Rajesh Kapur >>

Re: SOLR Suggester | CFQ Variable | - not supported

2016-07-17 Thread Rajesh Kapur
gt; output. > > Could you please let me know what should I do so that SOLR suggester > starts accepting - in CFQ parameters. > > Thanks > Rajesh Kapur >

SOLR Suggester | CFQ Variable | - not supported

2016-07-14 Thread Rajesh Kapur
Hi, I am facing issue while implementing suggester for my project where I am passing CFQ value having - in between, but it is not giving me desired output. Could you please let me know what should I do so that SOLR suggester starts accepting - in CFQ parameters. Thanks Rajesh Kapur

Re: Multiple context field / filters in Solr suggester

2016-06-22 Thread shamik
Anyone ? -- View this message in context: http://lucene.472066.n3.nabble.com/Multiple-context-field-filters-in-Solr-suggester-tp4283739p4283894.html Sent from the Solr - User mailing list archive at Nabble.com.

Multiple context field / filters in Solr suggester

2016-06-21 Thread Shamik Bandopadhyay
Hi, Just trying to understand if Solr suggester supports multiple filtering through the "contextField" option. As shown in the config below, is it possible to have two contextFields defined where I can use "cat" and "manu" as filtering criteria on the suggested

Re: Solr Suggester no results

2016-05-09 Thread Grigoris Iliopoulos
that these suggestions be matched from the beginning of > the > field... > > Best, > Erick > > On Thu, May 5, 2016 at 1:05 AM, Grigoris Iliopoulos > wrote: > > Hi there, > > > > I want to use the Solr suggester component for city names. I have the > >

Re: Solr Suggester no results

2016-05-06 Thread Erick Erickson
t, Erick On Thu, May 5, 2016 at 1:05 AM, Grigoris Iliopoulos wrote: > Hi there, > > I want to use the Solr suggester component for city names. I have the > following settings: > schema.xml > > Field definition > > positionIncrementGap="100"> > >

Solr Suggester no results

2016-05-05 Thread Grigoris Iliopoulos
Hi there, I want to use the Solr suggester component for city names. I have the following settings: schema.xml Field definition The field i want to apply the suggester on The copy field The field solr-config.xml true 10 mySuggester

Re: [Solr Suggester Component] Unique suggestions

2016-03-14 Thread Alessandro Benedetti
Hi Roland, I agree with you, I updated the Jira issue and I will spend some more time on that. I think the best solution should be Solr core side, I will sort out some proposal, that we can discuss ( probably I will use the related spin off Jira issue, linked in : https://issues.apache.org/jira/bro

Re: [Solr Suggester Component] Unique suggestions

2016-03-12 Thread Roland Szűcs
Hi all, I think nobody can question that this configuration parameter is neccessary. Most of the use cases need distinct values. I use solr 5.2.1 for an ebook store. I use the suggester component for autocomplete titles, authors, publishers. Some of our publishers have thousand of ebooks. I

Re: [Solr Suggester Component] Unique suggestions

2016-03-11 Thread Alessandro Benedetti
No one didn't care of the topic, let me try in the solr-user list as well ! Does anyone think that should exist a parameter that allow a Suggester to not return duplicate suggestions ? In my opinion could be a good improvement ! In the initial patch i was acting at SolrJ level, but to be honest I t

Re: Solr Suggester with Geo?

2015-11-10 Thread Alessandro Benedetti
tial extensions in the same spirit as > "Filters" are supported today. > > Sameer. > > On Mon, Nov 9, 2015 at 11:47 AM, William Bell wrote: > > > Yeah we have that working today. But the issue is we want to use > > http://lucidworks.com/blog/sol

Re: Solr Suggester with Geo?

2015-11-10 Thread Mikhail Khludnev
on is much more complicated. On Mon, Nov 9, 2015 at 10:18 PM, William Bell wrote: > http://lucidworks.com/blog/solr-suggester/ > > > Wondering if anyone has uses these new techniques with a boost on > geodist() inverted? So the rows that get returned that are closest >

Re: Solr Suggester with Geo?

2015-11-09 Thread Sameer Maggon
lters" are supported today. Sameer. On Mon, Nov 9, 2015 at 11:47 AM, William Bell wrote: > Yeah we have that working today. But the issue is we want to use > http://lucidworks.com/blog/solr-suggester/ > > And you cannot do a boost with that right? > > > > On Mon, Nov

Re: Solr Suggester with Geo?

2015-11-09 Thread William Bell
Yeah we have that working today. But the issue is we want to use http://lucidworks.com/blog/solr-suggester/ And you cannot do a boost with that right? On Mon, Nov 9, 2015 at 12:41 PM, Sameer Maggon wrote: > Have you looked at the Spatial extensions for Solr? If you are indexing > L

Re: Solr Suggester with Geo?

2015-11-09 Thread Sameer Maggon
r/Spatial+Search Thanks, -- *Sameer Maggon* www.measuredsearch.com <http://measuredsearch.com/> Fully Managed Solr-as-a-Service | Solr Consulting | Solr Support On Mon, Nov 9, 2015 at 11:18 AM, William Bell wrote: > http://lucidworks.com/blog/solr-suggester/ > > > Wondering if a

Solr Suggester with Geo?

2015-11-09 Thread William Bell
http://lucidworks.com/blog/solr-suggester/ Wondering if anyone has uses these new techniques with a boost on geodist() inverted? So the rows that get returned that are closest need to come back first. We are still using Edge Grams since we have not figured out how to boost the results on geo

Re: Solr suggester throws error on core reload.

2015-08-14 Thread Nutch Solr User
was related to resolution of this issue. - Nutch Solr User "The ultimate search engine would basically understand everything in the world, and it would always give you the right thing." -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-suggester-throws-err

Re: Solr suggester throws error on core reload.

2015-08-14 Thread Erick Erickson
makes following discussions in the mailing list archives particularly difficult. And assuming your question is important here and not the title, see: http://lucidworks.com/blog/solr-suggester/ Best, Erick On Thu, Aug 13, 2015 at 11:33 PM, Nutch Solr User wrote: > I want to use AnalyzingInfixLo

Re: Solr suggester throws error on core reload.

2015-08-13 Thread Nutch Solr User
right thing." -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-suggester-throws-error-on-core-reload-tp4220725p4222902.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr suggester throws error on core reload.

2015-08-04 Thread Nutch Solr User
t; -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-suggester-throws-error-on-core-reload-tp4220725p4220730.html Sent from the Solr - User mailing list archive at Nabble.com.

Solr suggester throws error on core reload.

2015-08-04 Thread Nutch Solr User
right thing." -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-suggester-throws-error-on-core-reload-tp4220725.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Suggester not working.

2015-06-30 Thread ssharma7...@gmail.com
ene.472066.n3.nabble.com/Solr-Suggester-not-working-tp4214086p4214945.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Suggester not working.

2015-06-30 Thread Vincenzo D'Amore
> 512409557603043072 > > > > document1 > 512409557603043072 > > > > document2 > 512409557603043072 > > > > document3 > 512409557603043072 > > > > document4 > 512409557603043072 > > > > > > > > 3 > > > document > 10933347601771902 > > > > documents > 4373339040708760 > > > > documenting > 2186669520354380 > > > > > > > > > > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Solr-Suggester-not-working-tp4214086p4214929.html > Sent from the Solr - User mailing list archive at Nabble.com. > -- Vincenzo D'Amore email: v.dam...@gmail.com skype: free.dev mobile: +39 349 8513251

Re: Solr Suggester not working.

2015-06-30 Thread ssharma7...@gmail.com
documents 4373339040708760 documenting 2186669520354380 -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Suggester-not-working-tp4214086p4214929.html Sent from the Solr - User mailing

Re: Solr Suggester not working.

2015-06-30 Thread Vincenzo D'Amore
t. > > Thanks & Regards, > Sachin Vyas. > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Solr-Suggester-not-working-tp4214086p4214873.html > Sent from the Solr - User mailing list archive at Nabble.com. > -- Vincenzo D'Amore email: v.dam...@gmail.com skype: free.dev mobile: +39 349 8513251

Re: Solr Suggester not working.

2015-06-30 Thread ssharma7...@gmail.com
davidphilip cherian & Alessandro Benedetti, Thanks for you feedback & links, I was able to get the suggestions from suggester component. Thanks & Regards, Sachin Vyas. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Suggester-not-working-tp4214086p42148

solr suggester build issues

2015-06-29 Thread Rajesh Hazari
Solr : 4.9.x , with simple solr cloud on jetty. JDK 1.7 num of replica : 4 , one replica for each shard num of shards : 1 Hi All, I have been facing below issues with solr suggester introduced in 4.7.x. Do any one have good working solution or buildOnCommit=true property is suggested not to use

Re: Solr Suggester not working.

2015-06-26 Thread Alessandro Benedetti
> startup="lazy" > > > true > 10 > textSuggester > > > suggest > > > > *Query to get suggestions* > > http://localhost:8983/solr/portal_documents/suggest?suggest=true&suggest.dictionary=

Re: Solr Suggester not working.

2015-06-25 Thread davidphilip cherian
Did you have a quick look at this blog? http://lucidworks.com/blog/solr-suggester/ On Fri, Jun 26, 2015 at 12:05 PM, ssharma7...@gmail.com < ssharma7...@gmail.com> wrote: > Hi, > I am new to Solr & have installed Solr 5.1. I am trying to get the > Suggester > compone

Solr Suggester not working.

2015-06-25 Thread ssharma7...@gmail.com
below: <http://lucene.472066.n3.nabble.com/file/n4214086/solr-suggester.jpg> Regards, Sachin Vyas. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Suggester-not-working-tp4214086.html Sent from the Solr - User mailing list archive at Nabble.com.

AW: Occasionally getting error in solr suggester component.

2015-06-02 Thread Clemens Wyss DEV
Thanks! -Ursprüngliche Nachricht- Von: Erick Erickson [mailto:erickerick...@gmail.com] Gesendet: Montag, 1. Juni 2015 17:26 An: solr-user@lucene.apache.org Betreff: Re: Occasionally getting error in solr suggester component. Attach suggester.build=true or suggester.buildAll=true to any

Re: Occasionally getting error in solr suggester component.

2015-06-01 Thread Erick Erickson
nline.com] > Gesendet: Donnerstag, 15. Januar 2015 19:52 > An: solr-user@lucene.apache.org > Betreff: Re: Occasionally getting error in solr suggester component. > > That sounds like a good approach to me. Of course it depends how often you > commit, and what your tolerance is f

AW: Occasionally getting error in solr suggester component.

2015-06-01 Thread Clemens Wyss DEV
2 An: solr-user@lucene.apache.org Betreff: Re: Occasionally getting error in solr suggester component. That sounds like a good approach to me. Of course it depends how often you commit, and what your tolerance is for delay in having suggestions appear, but it sounds as if you have a good und

Re: Solr suggester

2015-05-21 Thread Erick Erickson
ave buildOnStartup set to false, see: > https://issues.apache.org/jira/browse/SOLR-6845. > > See: http://lucidworks.com/blog/solr-suggester/ > > See inline. > > On Thu, May 21, 2015 at 6:12 AM, jon kerling > wrote: >> Hi, >> >> I'm u

Re: Solr suggester

2015-05-21 Thread jon kerling
ds analyzed and added to the suggester. Unfortunately, this happens _every_ time you start Solr and can take many minutes whether or not you have buildOnStartup set to false, see: https://issues.apache.org/jira/browse/SOLR-6845. See: http://lucidworks.com/blog/solr-suggester/ See inline. On Thu,

Re: Solr suggester

2015-05-21 Thread Erick Erickson
not you have buildOnStartup set to false, see: https://issues.apache.org/jira/browse/SOLR-6845. See: http://lucidworks.com/blog/solr-suggester/ See inline. On Thu, May 21, 2015 at 6:12 AM, jon kerling wrote: > Hi, > > I'm using solr 4.10 and I'm trying to add autosu

Solr suggester

2015-05-21 Thread jon kerling
Hi, I'm using solr 4.10 and I'm trying to add autosuggest ability to my application. I'm currently using this kind of configuration: mySuggester FuzzyLookupFactory suggester_fuzzy_dir DocumentDictionaryFactory field2 weightField text_gen

Re: Issue with Solr Suggester

2015-04-23 Thread Swaraj Kumar
This is working as expected but the problem I get with wrong spelling searches. When I give suggest.q=Bhopml Fuzzy lookup suggests bhopal which is correct buy in AnalyzingInfixSuggester it doesn't provide this . Regards, Swaraj Kumar Senior Software Engineer I MakeMyTrip.com Mob No- 9811774497

Re: Issue with Solr Suggester

2015-04-23 Thread Erick Erickson
I'm pretty sure that FuzzyLookup only goes from the beginning of the field, so this is not surprising. To get what you're looking for you probably would get more joy from the AnalyzingInfixSuggester. Best, Erick On Thu, Apr 23, 2015 at 6:20 AM, Swaraj Kumar wrote: > I am trying to implement Sugg

Issue with Solr Suggester

2015-04-23 Thread Swaraj Kumar
I am trying to implement Suggester in SOLR 5.0, Below is my configuration :- my-suggester FuzzyLookupFactory DocumentDictionaryFactory name cityname id text_general true true 10 suggest

Re: Solr Suggester Autocomplete Working Example

2015-02-02 Thread O. Olson
out one of my problems i.e. I was using the Search field that had been stemmed. I will look at creating an alternate field just for the suggester. Thank you. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Suggester-Autocomplete-Working-Example-tp4183493p4183532.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Suggester Autocomplete Working Example

2015-02-02 Thread O. Olson
ial words. To get good results from the suggester you will > probably need to set up a special field to use as a source of > suggestions that uses appropriate text analysis. > > -Mike -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Suggester-Autocomplet

Re: Solr Suggester Autocomplete Working Example

2015-02-02 Thread Alexandre Rafalovitch
On 2 February 2015 at 11:26, O. Olson wrote: > I also know that I do not have the > capability to do a lot of customizations to Solr that are much beyond the > defaults and changing a few settings. Actually, you have a capability to do unbelievable level of customization in Solr, starting from sc

Re: Solr Suggester Autocomplete Working Example

2015-02-02 Thread Michael Sokolov
ty to do a lot of customizations to Solr that are much beyond the defaults and changing a few settings. Hence I am curious if there is a website out there that uses Suggester or Autocomplete where I can compare the capabilities with my own. Thank you -- View this message in context: http:

Solr Suggester Autocomplete Working Example

2015-02-02 Thread O. Olson
pability to do a lot of customizations to Solr that are much beyond the defaults and changing a few settings. Hence I am curious if there is a website out there that uses Suggester or Autocomplete where I can compare the capabilities with my own. Thank you -- View this message in context: ht

Re: Occasionally getting error in solr suggester component.

2015-01-15 Thread Michael Sokolov
build=true) -Mike On 01/13/2015 10:41 AM, Dhanesh Radhakrishnan wrote: Hi all, I am experiencing a problem in Solr SuggestComponent Occasionally solr suggester component throws an error like Solr failed: {"responseHeader":{"status":500,"QTime":1},"error&qu

Re: Occasionally getting error in solr suggester component.

2015-01-15 Thread Dhanesh Radhakrishnan
in >>> LUCENE-5889 >>> >>> I would recommend against using buildOnCommit=true - with a large index >>> this can be a performance-killer. Instead, build the index yourself >>> using >>> the Solr spellchecker support (spellcheck.build=tru

Re: Occasionally getting error in solr suggester component.

2015-01-14 Thread Michael Sokolov
ld the index yourself using the Solr spellchecker support (spellcheck.build=true) -Mike On 01/13/2015 10:41 AM, Dhanesh Radhakrishnan wrote: Hi all, I am experiencing a problem in Solr SuggestComponent Occasionally solr suggester component throws an error like Solr failed: {"responseHe

Re: Occasionally getting error in solr suggester component.

2015-01-14 Thread Dhanesh Radhakrishnan
> >> Hi all, >> >> I am experiencing a problem in Solr SuggestComponent >> Occasionally solr suggester component throws an error like >> >> Solr failed: >> {"responseHeader":{"status":500,"QTim

Re: Occasionally getting error in solr suggester component.

2015-01-13 Thread Dan Davis
13/2015 10:41 AM, Dhanesh Radhakrishnan wrote: > >> Hi all, >> >> I am experiencing a problem in Solr SuggestComponent >> Occasionally solr suggester component throws an error like >> >> Solr failed: >> {"responseHeader":{"status":

Re: Occasionally getting error in solr suggester component.

2015-01-13 Thread Michael Sokolov
) -Mike On 01/13/2015 10:41 AM, Dhanesh Radhakrishnan wrote: Hi all, I am experiencing a problem in Solr SuggestComponent Occasionally solr suggester component throws an error like Solr failed: {"responseHeader":{"status":500,"QTime":1},"error"

  1   2   >