Re: Solr suggester : duplicate suggestions

2020-01-10 Thread Dhanesh Radhakrishnan
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. > > > > *Fi

Re: Solr suggester : duplicate suggestions

2020-01-10 Thread Paras Lehana
? 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 typed "Fire and safety", I'll get th

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 "suggest&q

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

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

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

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

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

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

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:

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

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

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:

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

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]

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

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

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

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

2017-06-27 Thread Angel Todorov
0,"payload":""},{"term":"g em","weight":297528130221121792,"payload":""},{"term":"g spokesperson","weight":297528130221121792,"payload":""},{"term":"g prepares","

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

2017-06-27 Thread alessandro.benedetti
- --- Alessandro Benedetti Search Consultant, R 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 - User mailing

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

2017-06-26 Thread Angel Todorov
your analysis chain, 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
; --- > Alessandro Benedetti > Search Consultant, R 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
copyfield). - --- Alessandro Benedetti Search Consultant, R 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

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

2017-06-26 Thread govind nitk
Search Consultant, R 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 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

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

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

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

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,

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

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

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
> > Best, > Erick > > On Thu, May 5, 2016 at 1:05 AM, Grigoris Iliopoulos > <grigoris@gmail.com> wrote: >> Hi there, >> >> I want to u

Re: Solr Suggester no results

2016-08-25 Thread Bradley Belyeu
> > Best, > Erick > > On Thu, May 5, 2016 at 1:05 AM, Grigoris Iliopoulos > <grigoris@gmail.com> wrote: >> Hi there, >> >> I want to u

Re: Solr Suggester no results

2016-08-25 Thread Scott Vanderbilt
:05 AM, Grigoris Iliopoulos <grigoris@gmail.com> wrote: 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-c

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

2016-07-27 Thread bbarani
term even it has weight set to 0) * /solr/test/suggest?suggest=true=mySuggester=xml=bill=5 5 bill 0 billing history 69753 -- View this message in context: http://lucene.472066.n3.nabble.com/Is-there-a-way-to-filter-the-results-based-on-weight-SOLR-suggester-tp4289286.html Sent from

Re: SOLR Suggester | CFQ Variable | - not supported

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

Re: SOLR Suggester | CFQ Variable | - not supported

2016-07-20 Thread Alessandro Benedetti
ue. Anyone can help me in this. > >> > > >> > Thanks > >> > > >> > On 14-Jul-2016 1:15 PM, "Rajesh Kapur" <rajeshkapu...@gmail.com> > wrote: > >> > > >> >> Hi, > >> >> >

Re: SOLR Suggester | CFQ Variable | - not supported

2016-07-19 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: SOLR Suggester | CFQ Variable | - not supported

2016-07-17 Thread Rajesh Kapur
...@gmail.com> wrote: > > > >> 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: SOLR Suggester | CFQ Variable | - not supported

2016-07-17 Thread Erick Erickson
quot; <rajeshkapu...@gmail.com> wrote: > >> 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

Re: SOLR Suggester | CFQ Variable | - not supported

2016-07-17 Thread Rajesh Kapur
een, 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 >

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
the fact that these suggestions be matched from the beginning of > the > field... > > Best, > Erick > > On Thu, May 5, 2016 at 1:05 AM, Grigoris Iliopoulos > <grigoris@gmail.com> wrote: > > Hi there, > > > > I want to use the Sol

Re: Solr Suggester no results

2016-05-06 Thread Erick Erickson
at 1:05 AM, Grigoris Iliopoulos <grigoris@gmail.com> 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 :

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.

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

Re: Solr Suggester with Geo?

2015-11-10 Thread Mikhail Khludnev
is much more complicated. On Mon, Nov 9, 2015 at 10:18 PM, William Bell <billnb...@gmail.com> 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 th

Re: Solr Suggester with Geo?

2015-11-10 Thread Alessandro Benedetti
the SolrSuggestor to support spatial extensions in the same spirit as > "Filters" are supported today. > > Sameer. > > On Mon, Nov 9, 2015 at 11:47 AM, William Bell <billnb...@gmail.com> wrote: > > > Yeah we have that working today. But the issue is we want t

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 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 <billnb...@gmail.com> wrote: > http://lucidworks.com/blog/solr-sugges

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 <sam...@measuredsearch.com> wrote: > Have you looked at the Spatial extensions for Sol

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 <billnb...@gmail.com> 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? > >

Re: Solr suggester throws error on core reload.

2015-08-14 Thread Nutch Solr User
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-14 Thread Erick Erickson
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 nutchsolru...@gmail.com wrote: I want to use

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-error-on-core

Solr suggester throws error on core reload.

2015-08-04 Thread Nutch Solr User
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 throws error on core reload.

2015-08-04 Thread Nutch Solr User
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.

Re: Solr Suggester not working.

2015-06-30 Thread Vincenzo D'Amore
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-tp4214086p4214873.html Sent from

Re: Solr Suggester not working.

2015-06-30 Thread ssharma7...@gmail.com
-- 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.

Re: Solr Suggester not working.

2015-06-30 Thread Vincenzo D'Amore
str name=payload/ /lst /arr /lst /lst /lst /response -- 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

Re: Solr Suggester not working.

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

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

Solr Suggester not working.

2015-06-26 Thread ssharma7...@gmail.com
image 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.

Re: Solr Suggester not working.

2015-06-26 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 component working without any success

Re: Solr Suggester not working.

2015-06-26 Thread Alessandro Benedetti
/lst /response The data is getting indexed properly, as can be seen from image 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

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

AW: Occasionally getting error in solr suggester component.

2015-06-01 Thread Clemens Wyss DEV
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 understanding of the tradeoffs

Re: Occasionally getting error in solr suggester component.

2015-06-01 Thread Erick Erickson
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 understanding of the tradeoffs

Re: Solr suggester

2015-05-21 Thread Erick Erickson
://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 jonkerl...@yahoo.com.invalid wrote: Hi, I'm using solr 4.10 and I'm trying to add autosuggest ability to my application. I'm currently using

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: searchComponent name=suggest class=solr.SuggestComponent lst name=suggester str name=namemySuggester/str str name=lookupImplFuzzyLookupFactory/str

Re: Solr suggester

2015-05-21 Thread jon kerling
, the stored fields 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

Re: Solr suggester

2015-05-21 Thread Erick Erickson
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, May 21, 2015 at 6:12 AM, jon kerling jonkerl...@yahoo.com.invalid wrote: Hi, I'm using solr 4.10 and I'm trying to add autosuggest

Re: Issue with Solr Suggester

2015-04-24 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 swaraj2...@gmail.com wrote: I am

Issue with Solr Suggester

2015-04-23 Thread Swaraj Kumar
I am trying to implement Suggester in SOLR 5.0, Below is my configuration :- searchComponent name=suggest class=solr.SuggestComponent lst name=suggester str name=namemy-suggester/str str name=lookupImplFuzzyLookupFactory/str str

Solr Suggester Autocomplete Working Example

2015-02-02 Thread O. Olson
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://lucene.472066.n3.nabble.com/Solr-Suggester-Autocomplete-Working

Re: Solr Suggester Autocomplete Working Example

2015-02-02 Thread Michael Sokolov
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://lucene.472066.n3.nabble.com/Solr-Suggester-Autocomplete-Working-Example

Re: Solr Suggester Autocomplete Working Example

2015-02-02 Thread Alexandre Rafalovitch
On 2 February 2015 at 11:26, O. Olson olson_...@yahoo.it 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,

Re: Solr Suggester Autocomplete Working Example

2015-02-02 Thread O. Olson
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-Autocomplete-Working-Example-tp4183493p4183530.html Sent

Re: Solr Suggester Autocomplete Working Example

2015-02-02 Thread O. Olson
. 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: Occasionally getting error in solr suggester component.

2015-01-15 Thread Michael Sokolov
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:{msg:suggester was not built

Re: Occasionally getting error in solr suggester component.

2015-01-15 Thread Dhanesh Radhakrishnan
(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: {responseHeader:{status:500,QTime:1},error:{msg:suggester

Re: Occasionally getting error in solr suggester component.

2015-01-14 Thread Michael Sokolov
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: {responseHeader:{status:500,QTime:1},error

Re: Occasionally getting error in solr suggester component.

2015-01-14 Thread Dhanesh Radhakrishnan
- with a large index this can be a performance-killer. Instead, build 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

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:{msg:suggester was not built

Re: Occasionally getting error in solr suggester component.

2015-01-13 Thread Dan Davis
am experiencing a problem in Solr SuggestComponent Occasionally solr suggester component throws an error like Solr failed: {responseHeader:{status:500,QTime:1},error:{msg:suggester was not built,trace:java.lang.IllegalStateException: suggester was not built\n\tat

  1   2   >