Re: Autosuggest help

2019-04-06 Thread Midas A
Any update? On Thu, 4 Apr 2019, 1:09 pm Midas A, wrote: > Hi, > > We need to use auto suggest click stream data in Auto suggestion . How we > can achieve this ? > > Currently we are using suggester for auto suggestions . > > > Regards, > Midas >

Autosuggest help

2019-04-04 Thread Midas A
Hi, We need to use auto suggest click stream data in Auto suggestion . How we can achieve this ? Currently we are using suggester for auto suggestions . Regards, Midas

Re: Solr AutoSuggest Configuration Issue

2018-10-09 Thread Christian Ortner
Context filtering, at least using the suggest.cfq parameter, was not introduced before Solr 6 to my knowledge. As Edwin, I highly recommend updating. On Mon, Oct 8, 2018 at 2:20 PM Manu Nair wrote: > Hi, > > I am using Solr 5.1 for my application. > I am trying to use the autoSug

Re: Solr AutoSuggest Configuration Issue

2018-10-08 Thread Zheng Lin Edwin Yeo
plication. > I am trying to use the autoSuggest feature of Solr. > I want to do context filtering on the results returned by Solr suggest. > > Please help me know if this feature is supported in the version that I am > using(5.1). > Also if it works with multivalued fi

Solr AutoSuggest Configuration Issue

2018-10-08 Thread Manu Nair
Hi, I am using Solr 5.1 for my application. I am trying to use the autoSuggest feature of Solr. I want to do context filtering on the results returned by Solr suggest. Please help me know if this feature is supported in the version that I am using(5.1). Also if it works with multivalued field. I

Re: Solr 6.5 autosuggest suggests misspelt words and unwanted words

2018-06-20 Thread Alessandro Benedetti
Hi, you should curate your data, that is fundamental to have an healthy search solution, but let's see what you can do anyway : 1) curate a dictionary of such bad words and then configure analysis to skip them 2) Have you tried different dictionary implementations ? I would assume that each

Solr 6.5 autosuggest suggests misspelt words and unwanted words

2018-06-19 Thread Sri Sirisha Vallabhaneni
Hi , My Data contains un-curated data - which consists of *cuss words, misspelt words* like *nd* instead of *need. *We are using a auto-suggest/auto-complete that heavily relies on indexed data to recommend suggestions as the user types in his query. We are using a list of stop words

Re: autosuggest with solr.EdgeNGramFilterFactory no result found

2015-07-07 Thread Szűcs Roland
. The important bit here is that you shouldn't have to do so much work... This might help: http://lucidworks.com/blog/solr-suggester/ Best, Erick On Fri, Jul 3, 2015 at 4:40 AM, Roland Szűcs roland.sz...@bookandwalk.com wrote: I tried to setup an autosuggest feature with multiple dictionaries

Re: autosuggest with solr.EdgeNGramFilterFactory no result found

2015-07-03 Thread Erick Erickson
at 4:40 AM, Roland Szűcs roland.sz...@bookandwalk.com wrote: I tried to setup an autosuggest feature with multiple dictionaries for title , author and publisher fields. I used the solr.EdgeNGramFilterFactory to optimize the performance of the auto suggest. I have a document in the index

autosuggest with solr.EdgeNGramFilterFactory no result found

2015-07-03 Thread Roland Szűcs
I tried to setup an autosuggest feature with multiple dictionaries for title , author and publisher fields. I used the solr.EdgeNGramFilterFactory to optimize the performance of the auto suggest. I have a document in the index with title: Romana. When I test the text analysis for auto suggest

Re: Questions regarding autosuggest (Solr 5.2.1)

2015-06-30 Thread Thomas Michael Engelke
in the background, and with that comes alot of changes. We're used to older versions (4.3 and below). We especially have problems with the autosuggest feature. This is the field definition (schema.xml) for our autosuggest field: field name=autosuggest type=autosuggest indexed=true stored=true

Re: Questions regarding autosuggest (Solr 5.2.1)

2015-06-30 Thread Alessandro Benedetti
Engelke thomas.enge...@posteo.de wrote: A friend and I are trying to develop some software using Solr in the background, and with that comes alot of changes. We're used to older versions (4.3 and below). We especially have problems with the autosuggest feature. This is the field definition

Re: Questions regarding autosuggest (Solr 5.2.1)

2015-06-30 Thread Erick Erickson
used to older versions (4.3 and below). We especially have problems with the autosuggest feature. This is the field definition (schema.xml) for our autosuggest field: field name=autosuggest type=autosuggest indexed=true stored=true required=false multiValued=true / ... copyField source

Questions regarding autosuggest (Solr 5.2.1)

2015-06-29 Thread Thomas Michael Engelke
A friend and I are trying to develop some software using Solr in the background, and with that comes alot of changes. We're used to older versions (4.3 and below). We especially have problems with the autosuggest feature. This is the field definition (schema.xml) for our autosuggest field

Re: Questions regarding autosuggest (Solr 5.2.1)

2015-06-29 Thread Erick Erickson
and below). We especially have problems with the autosuggest feature. This is the field definition (schema.xml) for our autosuggest field: field name=autosuggest type=autosuggest indexed=true stored=true required=false multiValued=true / ... copyField source=name dest=autosuggest

solr autosuggest to stop/filter suggesting the phrases that ends with stopwords

2015-01-15 Thread Rajesh Hazari
Hi Folks, Solr Version 4.7+ Do we have any analyzer or filter or any plugin in solr to stop suggesting the phrase that ends with stopwords? For ex: If the suggestion are as below for query http://localhost.com/solr/suggest?q=jazz+a suggestion: [ jazz and, jazz at, jazz at lincoln, jazz at

Re: Partial match autosuggest (match a word occurring anywhere in a field)

2014-12-17 Thread bbarani
Thanks for your response. I fixed this issue by using the filter class=solr.PositionFilterFactory / fieldType name=edgytext class=solr.TextField positionIncrementGap=100 omitNorms=true analyzer type=index filter class=solr.LowerCaseFilterFactory/ tokenizer

Partial match autosuggest (match a word occurring anywhere in a field)

2014-12-16 Thread bbarani
Hi, I am trying to figure out a way to implement partial match autosuggest but it doesn't work in some cases. When I search for iphone 5s, I am able to see the below results. title_new:Apple iPhone 5s - 16GB - Gold but when I search for iphone gold (in title_new field), I am not able to see

Re: Partial match autosuggest (match a word occurring anywhere in a field)

2014-12-16 Thread Ahmet Arslan
trying to figure out a way to implement partial match autosuggest but it doesn't work in some cases. When I search for iphone 5s, I am able to see the below results. title_new:Apple iPhone 5s - 16GB - Gold but when I search for iphone gold (in title_new field), I am not able to see the above

Re: Best practice: Autosuggest/autocomplete vs. real search

2014-11-10 Thread Michael Sokolov
: We're using Solr as a backend for an ECommerce site/system. The Solr index stores products with selected attributes, as well as a dedicated field for autocomplete suggestions (Done via AJAX request when typing in the search box without pressing return). The autosuggest field is supplied

Re: Best practice: Autosuggest/autocomplete vs. real search

2014-11-10 Thread Jorge Luis Betancourt Gonzalez
with selected attributes, as well as a dedicated field for autocomplete suggestions (Done via AJAX request when typing in the search box without pressing return). The autosuggest field is supplied by copyField directives from certain select product attribute fields (description and/or name

Re: Best practice: Autosuggest/autocomplete vs. real search

2014-11-10 Thread Thomas Michael Engelke
The dedicated autosuggest field is not used by a suggester component, instead we just directly query it (/select). I'm trying to read my way into how the suggesters work, and toying around with some configurations (For instance from here: http://www.andornot.com/blog/post/Advanced-autocomplete

Best practice: Autosuggest/autocomplete vs. real search

2014-11-09 Thread Thomas Michael Engelke
We're using Solr as a backend for an ECommerce site/system. The Solr index stores products with selected attributes, as well as a dedicated field for autocomplete suggestions (Done via AJAX request when typing in the search box without pressing return). The autosuggest field is supplied

Autosuggest using EdgeNGrams with strange highlighting

2014-11-07 Thread Thomas Michael Engelke
We've moved from an asterisk based autosuggest functionality (searchterm*) to a version using a special field called autosuggest, filled via copyField directives. The field definition: fieldType name=autosuggest class=solr.TextField positionIncrementGap=100

Is there a way to prevent some keywords from being added to autosuggest dictionary?

2014-10-17 Thread bbarani
We index around 10k documents in SOLR and use inbuilt suggest functionality for auto complete. We have a field that contain a flag that is used to show or hide the documents from search results. I am trying to figure out a way to control the terms added to autosuggest index (to skip

Re: Is there a way to prevent some keywords from being added to autosuggest dictionary?

2014-10-17 Thread Garth Grimm
. We have a field that contain a flag that is used to show or hide the documents from search results. I am trying to figure out a way to control the terms added to autosuggest index (to skip the documents from getting added to auto suggest index) based on the value of the flag

Filtering autosuggest results in Solr

2014-08-15 Thread Chakravarthy Yeleswarapu -X (cyeleswa - ASQUARE INC at Cisco)
Hi, We have following use case: Filter autosuggest results of solr_field1 based on solr_field2 values. The solr_field2 values are constants such as source1, source2 etc. If user types xyz for solr_field1, suggestions returned can match anywhere in solr_field1 value such as abcxyz, xyzabc

Autosuggest with spelling correction

2014-08-13 Thread Harun Reşit Zafer
Hi everyone, Currently I'm using AnalyzingInfixLookupFactory with a suggestions file containing up to 3 word phrases. However this component can't keep suggesting in case of spelling errors. I heard about FuzzySuggester and found some sample configurations here

Re: Autosuggest with spelling correction

2014-08-13 Thread Gopal Patwa
This jira has some documentation, may be this will help you.. https://issues.apache.org/jira/browse/SOLR-5683 On Wed, Aug 13, 2014 at 1:28 AM, Harun Reşit Zafer harun.za...@tubitak.gov.tr wrote: Hi everyone, Currently I'm using AnalyzingInfixLookupFactory with a suggestions file

Re: Extend the Solr Terms Component to implement a customized Autosuggest

2014-08-01 Thread Erick Erickson
afternoon guys, I really appreciate if someone on the community can help me with the following issue: I need to implement a Solr autosuggest that supports: 1. Get autosuggestion over multivalued fields 2. Case - Insensitiveness 3. Look for content in the middle for example

Extend the Solr Terms Component to implement a customized Autosuggest

2014-07-31 Thread Juan Pablo Albuja
Good afternoon guys, I really appreciate if someone on the community can help me with the following issue: I need to implement a Solr autosuggest that supports: 1. Get autosuggestion over multivalued fields 2. Case - Insensitiveness 3. Look for content in the middle

Sorting is not correct in autosuggest

2014-04-30 Thread neha sinha
Hi All In my auto suggest page sorting is not correct for the suggestions i am getting. However suggestions are all correct. Any guidance will be helpful -- View this message in context: http://lucene.472066.n3.nabble.com/Sorting-is-not-correct-in-autosuggest-tp4133859.html Sent from

Re: Sorting is not correct in autosuggest

2014-04-30 Thread Erick Erickson
. However suggestions are all correct. Any guidance will be helpful -- View this message in context: http://lucene.472066.n3.nabble.com/Sorting-is-not-correct-in-autosuggest-tp4133859.html Sent from the Solr - User mailing list archive at Nabble.com.

AutoSuggest like Google in Solr using Solarium Client.

2014-03-17 Thread Sohan Kalsariya
Can anyone suggest me the best practices how to do SpellCheck and AutoSuggest in solarium. Can anyone give me example for that? -- Regards, *Sohan Kalsariya*

RE: AutoSuggest like Google in Solr using Solarium Client.

2014-03-17 Thread Suresh Soundararajan
, 2014 8:14 PM To: solr-user@lucene.apache.org Subject: AutoSuggest like Google in Solr using Solarium Client. Can anyone suggest me the best practices how to do SpellCheck and AutoSuggest in solarium. Can anyone give me example for that? -- Regards, *Sohan Kalsariya* [Aspire Systems] This e-mail

Re: AutoSuggest like Google in Solr using Solarium Client.

2014-03-17 Thread Michael McCandless
AM, Sohan Kalsariya sohankalsar...@gmail.com wrote: Can anyone suggest me the best practices how to do SpellCheck and AutoSuggest in solarium. Can anyone give me example for that? -- Regards, *Sohan Kalsariya*

Re: AutoSuggest like Google in Solr using Solarium Client.

2014-03-17 Thread bbi123
Not sure if you have already seen this one.. http://www.solarium-project.org/2012/01/suggester-query-support/ You can also use edge N gram filter to implement typeahead auto suggest. -- View this message in context: http://lucene.472066.n3.nabble.com/AutoSuggest-like-Google-in-Solr-using

Re: Solr Autosuggest - Strange issue with leading numbers in query

2014-03-14 Thread bbi123
name=spellcheck lst name=suggestions lst name=ip int name=numFound2/int *int name=startOffset17/int* int name=endOffset19/int arr name=suggestion stripad/str striphone/str /arr /lst /lst /lst /response -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Autosuggest-Strange

Re: Solr Autosuggest - Strange issue with leading numbers in query

2014-02-19 Thread Jason Hellman
.n3.nabble.com/Solr-Autosuggest-Strange-issue-with-leading-numbers-in-query-tp4116751p4118072.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Autosuggest - Strange issue with leading numbers in query

2014-02-18 Thread bbi123
-Autosuggest-Strange-issue-with-leading-numbers-in-query-tp4116751p4118072.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Autosuggest - Strange issue with leading numbers in query

2014-02-17 Thread Developer
since there is no keyword (combination) exists in the index. Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Autosuggest-Strange-issue-with-leading-numbers-in-query-tp4116751p4117846.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Autosuggest - Strange issue with leading numbers in query

2014-02-17 Thread Erick Erickson
.nabble.com/Solr-Autosuggest-Strange-issue-with-leading-numbers-in-query-tp4116751p4117846.html Sent from the Solr - User mailing list archive at Nabble.com.

Solr Autosuggest - Strange issue with leading numbers in query

2014-02-11 Thread Developer
I have a strange issue with Autosuggest. Whenever I query for a keyword along with numbers (leading) it returns the suggestion corresponding to the alphabets (ignoring the numbers). I was under assumption that it will return an empty result back. I am not sure what I am doing wrong. Can someone

Re: Solr Autosuggest - Strange issue with leading numbers in query

2014-02-11 Thread Erick Erickson
, which is what makes the returned suggestion close to the term I think. Best, Erick On Tue, Feb 11, 2014 at 1:01 PM, Developer bbar...@gmail.com wrote: I have a strange issue with Autosuggest. Whenever I query for a keyword along with numbers (leading) it returns the suggestion corresponding

Autosuggest - Custom sorting

2013-10-01 Thread SolrLover
Is there a way to sort the returned Autosuggest list based on a particular value (ex: score)? I am trying to sort the returned suggestions based on a field that has been calculated manually but not sure how to use that field for sorting suggestions. -- View this message in context: http

Autosuggest on very large index

2013-08-20 Thread Greg Preston
Using 4.4.0 - I would like to be able to do an autosuggest query against one of the fields in our index and have the results be limited by an fq. I can get exactly the results I want with a facet query using a facet.prefix, but the first query takes ~5 minutes to run on our QA env (~240M docs

RE: Autosuggest on very large index

2013-08-20 Thread Markus Jelsma
@lucene.apache.org Subject: Autosuggest on very large index Using 4.4.0 - I would like to be able to do an autosuggest query against one of the fields in our index and have the results be limited by an fq. I can get exactly the results I want with a facet query using a facet.prefix

Re: Autosuggest on very large index

2013-08-20 Thread Greg Preston
The filter query would be on a different field (clientId) than the field we want to autosuggest on (title). Or are you proposing we index a compound field that would be clientId+titleTokens so we would then prefix the suggester with clientId+userInput ? Interesting idea. -Greg On Tue, Aug 20

Re: Autosuggest on very large index

2013-08-20 Thread Jack Krupansky
. -- Jack Krupansky -Original Message- From: Greg Preston Sent: Tuesday, August 20, 2013 2:00 PM To: solr-user@lucene.apache.org Subject: Autosuggest on very large index Using 4.4.0 - I would like to be able to do an autosuggest query against one of the fields in our index and have

Re: Autosuggest on very large index

2013-08-20 Thread Greg Preston
a lot more hardware. 2. You need to scale back your ambitions. -- Jack Krupansky -Original Message- From: Greg Preston Sent: Tuesday, August 20, 2013 2:00 PM To: solr-user@lucene.apache.org Subject: Autosuggest on very large index Using 4.4.0 - I would like to be able to do

Re: AutoSuggest+Grouping in one request

2013-05-02 Thread Otis Gospodnetic
Hi, Hm, I *think* you can't do it in one go with Solr's Suggester, but I'm not expert there. I can only point you to something like our AutoComplete - http://sematext.com/products/autocomplete/index.html - which, as you can see on that screenshot, has the grouping you seem to be after. Maybe

AutoSuggest+Grouping in one request

2013-04-26 Thread Rounak Jain
Hi everyone, Search dropdowns on popular sites like Amazon (example imagehttp://i.imgur.com/aQyM8WD.jpg) use autosuggested words along with grouping (Field Collapsing in Solr). While I can replicate the same functionality in Solr using two requests (first to obtain suggestions, second for the

Re: Issue with spellcheck and autosuggest

2013-02-03 Thread Dixline
But if i use my system as solr server it is working fine. The problem comes only if i use another machine as solr server. But both machines have the same schema and solrconfig files. -- View this message in context: http://lucene.472066.n3.nabble.com/Issue-with-spellcheck-and-autosuggest

Re: Issue with spellcheck and autosuggest

2013-01-30 Thread Artyom
.n3.nabble.com/Issue-with-spellcheck-and-autosuggest-tp4036208p4037631.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Issue with spellcheck and autosuggest

2013-01-29 Thread Artyom
you should check not suggestions, but collations in the response xml -- View this message in context: http://lucene.472066.n3.nabble.com/Issue-with-spellcheck-and-autosuggest-tp4036208p4036977.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Issue with spellcheck and autosuggest

2013-01-26 Thread Jack Krupansky
with spellcheck and autosuggest Hi, this is my spellcheck/autosuggest dictionary field and field type, field name=searchText type=spelltext indexed=true stored=true multiValued=true default=JulyMSO / fieldType name=spelltext class=solr.TextField positionIncrementGap=100 analyzer type=index

Issue with spellcheck and autosuggest

2013-01-25 Thread Dixline
Hi, this is my spellcheck/autosuggest dictionary field and field type, field name=searchText type=spelltext indexed=true stored=true multiValued=true default=JulyMSO / fieldType name=spelltext class=solr.TextField positionIncrementGap=100 analyzer type=index tokenizer class

Sor Cloud Autosuggest not working

2013-01-08 Thread Jay Parashar
I recently migrated to Solr Cloud (4.0.0 from 3.6.0) and my auto suggest feature does not seem to be working. It is a typical implementation with a /suggest searchHandler defined on the config. Are there any changes I need to incorporate? Regards Jay

Re: Sor Cloud Autosuggest not working

2013-01-08 Thread Mark Miller
I think distrib with components has to be setup a little differently - you might need to use shards.qt to point back to the same request handler for the sub searches. Just a guess - been a while since I've looked at spellcheck distrib support and I'm not 100% positive the suggest stuff is all

RE: Sor Cloud Autosuggest not working

2013-01-08 Thread Jay Parashar
Thanks Mark! -Original Message- From: Mark Miller [mailto:markrmil...@gmail.com] Sent: Tuesday, January 08, 2013 10:16 AM To: solr-user@lucene.apache.org Subject: Re: Sor Cloud Autosuggest not working I think distrib with components has to be setup a little differently - you might need

solr -autosuggest

2012-10-25 Thread Sujatha Arun
Hi, A few question on Solr Auto suggest below Q1)I tried using the Index based Suggest functionality with solr 3.6.1 , can I combine this with file based boosting .Currently when I specify the index field and the sourcelocation,the file in the source location is not considered. Is there any

Re: Custom Geocoder with Solr and Autosuggest

2012-08-16 Thread Alexey Serba
Swindon, Wiltshire, England Yes, you can add postcode/outcodes there also. And I would add additional field type region/county/town/postcode/outcode. The third decision was to return “autosuggest” results, for example when the user types “Lond” I would like to suggest “London, England

Custom Geocoder with Solr and Autosuggest

2012-08-13 Thread Spadez
“autosuggest” results, for example when the user types “Lond” I would like to suggest “London, England”. For this to work I think it makes sense to return up to 5 results via JSON based on relevancy and have these displayed under the search box. My fourth decision is that when the user actually hits

Solr Autosuggest

2012-06-20 Thread Shri Kanish
Hi, I have a question regarding solr Autosuggest. (If this is not the correct link to Post, Please suggest).   I have implemented solr Autosuggest with Suggester component. I have read in a blog saying, Currently implemented Lookups keep their data in memory, so unlike spellchecker data

WFST with autosuggest/geo

2012-05-22 Thread William Bell
Does anyone have the slides or sample code from: Building Query Auto-Completion Systems with Lucene 4.0 Presented by Sudarshan Gaikaiwari, Software Engineer,Yelp We want to implement WFST with GEO boosting. -- Bill Bell billnb...@gmail.com cell 720-256-8076

Re: Problems with AutoSuggest feature(Terms Components)

2011-11-23 Thread Erick Erickson
for the underlying shard cores. Regards, Sivaganesh -- View this message in context: http://lucene.472066.n3.nabble.com/Problems-with-AutoSuggest-feature-Terms-Components-tp3512734p3528597.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Problems with AutoSuggest feature(Terms Components)

2011-11-22 Thread mechravi25
to passed to these underlying shard cores overriding the default value set. Can you please suggest the definition of the terms component for the underlying shard cores. Regards, Sivaganesh -- View this message in context: http://lucene.472066.n3.nabble.com/Problems-with-AutoSuggest-feature

Re: Problems with AutoSuggest feature(Terms Components)

2011-11-17 Thread Erick Erickson
execute -- View this message in context: http://lucene.472066.n3.nabble.com/Problems-with-AutoSuggest-feature-Terms-Components-tp3512734p3512734.html Sent from the Solr - User mailing list archive at Nabble.com.

Problems with AutoSuggest feature(Terms Components)

2011-11-16 Thread mechravi25
=trueqt=/termswt=javabinterms.sort=indexversion=1} status=0 QTime=106766 Nov 14, 2011 2:05:55 PM org.apache.solr.core.SolrCore execute -- View this message in context: http://lucene.472066.n3.nabble.com/Problems-with-AutoSuggest-feature-Terms-Components-tp3512734p3512734.html Sent from the Solr

Re: autosuggest combination of data from documents and popular queries

2011-09-29 Thread abhayd
think I would even need ngrams at all Any suggestions? abhay -- View this message in context: http://lucene.472066.n3.nabble.com/autosuggest-combination-of-data-from-documents-and-popular-queries-tp3360657p3378874.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: autosuggest combination of data from documents and popular queries

2011-09-29 Thread abhayd
anyone? How to sort for termscomponent? -- View this message in context: http://lucene.472066.n3.nabble.com/autosuggest-combination-of-data-from-documents-and-popular-queries-tp3360657p3381201.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: autosuggest combination of data from documents and popular queries

2011-09-28 Thread Chris Hostetter
: If user starts typing m i wil show mango as suggestion. And other : suggestions should come from the document title in index. So if I have a : document in index with title Man .. so suggestions would be : mango : man ... : Is this doable ? any options ? It's totally doable, and you've

Re: autosuggest combination of data from documents and popular queries

2011-09-28 Thread abhayd
.nabble.com/autosuggest-combination-of-data-from-documents-and-popular-queries-tp3360657p3378096.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: autosuggest combination of data from documents and popular queries

2011-09-23 Thread abhayd
Is this doable ? any options ? -- View this message in context: http://lucene.472066.n3.nabble.com/autosuggest-combination-of-data-from-documents-and-popular-queries-tp3360657p3362049.html Sent from the Solr - User mailing list archive at Nabble.com.

Autosuggest best practice / feedback

2011-09-22 Thread Doug McKenzie
Hi there, I'm relatively new to Solr and have been playing around with it for a few weeks now. I've got a system setup now that I'm currently quite happy with and is returning some decent results (although there's always room for improvement). Just hoping to get some feedback on the setup

autosuggest combination of data from documents and popular queries

2011-09-22 Thread abhayd
hi we already have autosuggest working using solr based on popular search terms. we use following approach.. http://www.lucidimagination.com/blog/2009/09/08/auto-suggest-from-popular-queries-using-edgengrams/ Now we want to use data indexed in solr also for autosuggest. with popular search terms

Re: autosuggest combination of data from documents and popular queries

2011-09-22 Thread Otis Gospodnetic
Hello, hi  we already have autosuggest working using solr based on popular search terms. Just terms of whole queries?  I assume the latter. we use following approach.. http://www.lucidimagination.com/blog/2009/09/08/auto-suggest-from-popular-queries-using-edgengrams/ Now we want to use data

How can I create a good autosuggest list with phrases?

2011-08-04 Thread Shawn Heisey
I'm at the point in my Solr deployment where I want to start using it for autosuggest, but I've run into a snag. Because the fields that I want to use for autosuggest are tokenized, I can only get single terms out of it. I would like to have it find common phrases that are between two

Re: How can I create a good autosuggest list with phrases?

2011-08-04 Thread Sethi, Parampreet
. This is a good and faster solution if you have application logs to start with and not very high volume of data. Or you can search Solr with the user entered data, which returns all the matching results and boost the data by field which will be used in AutoSuggest box, use top 5 items in the dynamic

Re: How can I create a good autosuggest list with phrases?

2011-08-04 Thread Shawn Heisey
On 8/4/2011 10:04 AM, Sethi, Parampreet wrote: We handled similar requirement in our product kitchendaily.com by creating a list of Search terms which were frequently searched over a period of time and then building auto-suggestion index from this data. The constant updates of this will allow

Re: Solr Autosuggest help

2011-03-17 Thread rahul
://lucene.472066.n3.nabble.com/Solr-Autosuggest-help-tp2580944p2692651.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Autosuggest help

2011-03-17 Thread rahul
this message in context: http://lucene.472066.n3.nabble.com/Solr-Autosuggest-help-tp2580944p2693601.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr Autosuggest help

2011-03-17 Thread Otis Gospodnetic
/ - Original Message From: rahul asharud...@gmail.com To: solr-user@lucene.apache.org Sent: Thu, March 17, 2011 10:12:27 AM Subject: Re: Solr Autosuggest help hi, We have found that 'EnglishPorterFilterFactory' causes that issue. I believe that is used for stemming words. Once we

Re: Solr Autosuggest help

2011-03-07 Thread Ahmet Arslan
I have added the following line in both the  section and in   section in schema.xml. filter class=solr.ShingleFilterFactory maxShingleSize=2 outputUnigrams=true outputUnigramIfNoNgram=true And reindex my content. However, if I query solr for the multi work search terms suggestion , it

Re: Solr Autosuggest help

2011-03-07 Thread rahul
hi.. thanks for your replies.. It seems I mistakenly put ShingleFilterFactory in another field. When I put the factory in correct field it works fine now. Thanks. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Autosuggest-help-tp2580944p2645780.html Sent from

Re: Solr Autosuggest help

2011-03-06 Thread rahul
to correct this.. or what I am missing.. thanks, -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-Autosuggest-help-tp2580944p2645316.html Sent from the Solr - User mailing list archive at Nabble.com.

Solr Autosuggest help

2011-02-26 Thread rahul
Hi, I am using Solr (1.4.1) AutoSuggest feature using termsComponent. Currently, if I type 'goo' means, Solr suggest words like 'google'. But I would like to receive suggestions like 'google, google alerts, ..' . ie, suggestions with single and multiple terms. Not sure, whether I need to use

Re: Solr Autosuggest help

2011-02-26 Thread Ahmet Arslan
I am using Solr  (1.4.1) AutoSuggest feature using termsComponent. Currently, if I type 'goo' means, Solr suggest words like 'google'. But I would like to receive suggestions like 'google, google alerts, ..' . ie, suggestions with single and multiple terms. Not sure, whether I need

Autosuggest terms which GOOGLE uses?

2010-12-08 Thread Anurag
How Google selects the autosuggest terms? Is that Google uses Userrs Queries from Log files to suggest only those terms? - Kumar Anurag -- View this message in context: http://lucene.472066.n3.nabble.com/Autosuggest-terms-which-GOOGLE-uses-tp2039078p2039078.html Sent from the Solr - User

Re: Autosuggest terms which GOOGLE uses?

2010-12-08 Thread Tanguy Moal
: How Google selects the autosuggest terms? Is that Google uses Userrs Queries from Log files to suggest only those terms? - Kumar Anurag -- View this message in context: http://lucene.472066.n3.nabble.com/Autosuggest-terms-which-GOOGLE-uses-tp2039078p2039078.html Sent from the Solr

Re: Autosuggest terms which GOOGLE uses?

2010-12-08 Thread Anurag
Thanks a lot!! If I want to index query terms from lof files ? Is it possible . And then want to do autosuggest query on all those terms using termsComponentTill now my autosuggest options are like q.prefix= or q.suffix= which matches the terms available in the documents. - Kumar

facet+shingle in autosuggest

2010-11-11 Thread Lukas Kahwe Smith
Hi, I am using a facet.prefix search with shingle's in my autosuggest: fieldType name=shingle class=solr.TextField positionIncrementGap=100 stored=false multiValued=true analyzer tokenizer class=solr.StandardTokenizerFactory / filter class=solr.LowerCaseFilterFactory

Re: facet+shingle in autosuggest

2010-11-11 Thread Erick Erickson
autosuggest: fieldType name=shingle class=solr.TextField positionIncrementGap=100 stored=false multiValued=true analyzer tokenizer class=solr.StandardTokenizerFactory / filter class=solr.LowerCaseFilterFactory / filter class=solr.RemoveDuplicatesTokenFilterFactory

Re: facet+shingle in autosuggest

2010-11-11 Thread Lukas Kahwe Smith
On 11.11.2010, at 17:42, Erick Erickson wrote: I don't know all the implications here, but can't you just insert the StopwordFilterFactory before the ShingleFilterFactory and turn it loose? havent tried this, but i would suspect that i would then get in trouble with stuff like united

phrase query with autosuggest (SOLR-1316)

2010-10-06 Thread mike anderson
It seemed like SOLR-1316 was a little too long to continue the conversation. Is there support for quotes indicating a phrase query. For example, my autosuggest query for mike sha ought to return mike shaffer, mike sharp, etc. Instead I get suggestions for mike and for sha, resulting in a collated

RE: phrase query with autosuggest (SOLR-1316)

2010-10-06 Thread Robert Petersen
My simple but effective solution to that problem was to replace the white spaces in the items you index for autosuggest with some special character, then your wildcarding will work with the whole phrase as you desire. Index: mike_shaffer Query: mike_sha* -Original Message- From: mike

Re: phrase query with autosuggest (SOLR-1316)

2010-10-06 Thread Jonathan Rochkind
Petersen wrote: My simple but effective solution to that problem was to replace the white spaces in the items you index for autosuggest with some special character, then your wildcarding will work with the whole phrase as you desire. Index: mike_shaffer Query: mike_sha* -Original Message

Re: Autosuggest with inner phrases

2010-10-04 Thread Otis Gospodnetic
Or, plug, this: http://www.sematext.com/products/autocomplete/index.html , which happens to use the same bass examples as the original poster. :) You can see this Autosuggest in action on http://search-lucene.com/ . Otis Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch

Re: Autosuggest with inner phrases

2010-10-03 Thread Arunkumar Ayyavu
(note how bass is not necessarily the first word). How can i achieve this using solr's terms component. Regards, Siva -- View this message in context: http://lucene.472066.n3.nabble.com/Autosuggest-with-inner-phrases-tp1619326p1619326.html Sent from the Solr - User mailing list archive

Re: Autosuggest with inner phrases

2010-10-03 Thread Bhavnik Gajjar
component. Regards, Siva -- View this message in context: http://lucene.472066.n3.nabble.com/Autosuggest-with-inner-phrases-tp1619326p1619326.html Sent from the Solr - User mailing list archive at Nabble.com. The contents of this eMail including the contents of attachment(s

  1   2   >