Scoring Search for autocomplete

2010-07-23 Thread Frank A
Hi, I have an autocomplete that is currently working with an NGramTokenizer so if I search for "Yo" both "New York" and "Toyota" are valid results. However I'm trying to figure out how to best implement the search so that from a score perspective if the string

Re: Autocomplete with NGrams

2010-07-20 Thread MitchK
Mitch -- View this message in context: http://lucene.472066.n3.nabble.com/Autocomplete-with-NGrams-tp979312p980680.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Autocomplete with NGrams

2010-07-19 Thread Frank A
27;multicore'. There > you can see an example-configuration for a multicore-environment. > > Kind regards, > - Mitch > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Autocomplete-with-NGrams-tp979312p979610.html > Sent from the Solr - User mailing list archive at Nabble.com.

Re: Autocomplete with NGrams

2010-07-19 Thread MitchK
Frank, have a look at Solr's example-directory's and look for 'multicore'. There you can see an example-configuration for a multicore-environment. Kind regards, - Mitch -- View this message in context: http://lucene.472066.n3.nabble.com/Autocomplete-with-NGrams-tp979312p9

Autocomplete with NGrams

2010-07-19 Thread Frank A
I'm trying to follow the link below for setting up an auto complete/suggest via NGrams: http://www.lucidimagination.com/blog/2009/09/08/auto-suggest-from-popular-queries-using-edgengrams/ I'm trying to do it withing a single SOLR instance, but since this index isn't an index of the main documents

Re: Non-prefix, hierarchical autocomplete? Would SOLR-1316 work? Solritas?

2010-06-23 Thread Otis Gospodnetic
lly, now that I wrote this, I think we did something very much like that with http://sematext.com/products/autocomplete/index.html . Finally, for dealing with commas or spaces as tag separators, you can peak at the JS in a service like delicious.com and see how they do it. Their implementation

Re: TermsComponent - AutoComplete - Multiple Term Suggestions & Inclusive Search?

2010-06-23 Thread Sophie M.
n context: http://lucene.472066.n3.nabble.com/TermsComponent-AutoComplete-Multiple-Term-Suggestions-Inclusive-Search-tp916530p916769.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: TermsComponent - AutoComplete - Multiple Term Suggestions & Inclusive Search?

2010-06-23 Thread Chantal Ackermann
quot;Harry Potter and Whatever" and also "Potters and Plums" Cheers, Chantal On Wed, 2010-06-23 at 13:17 +0200, Saïd Radhouani wrote: > Hi, > > I'm using the Terms Component to se up the autocomplete feature based on a > String field. Here are the params I'

TermsComponent - AutoComplete - Multiple Term Suggestions & Inclusive Search?

2010-06-23 Thread Saïd Radhouani
Hi, I'm using the Terms Component to se up the autocomplete feature based on a String field. Here are the params I'm using: terms=true&terms.fl=type&terms.lower=cat&terms.prefix=cat&terms.lower.incl=false With the above params, I've been able to get suggestions

Re: Non-prefix, hierarchical autocomplete? Would SOLR-1316 work? Solritas?

2010-06-20 Thread Erik Hatcher
lritas for autocomplete. Wondered what is the best solution for my use case: 1) I would like to have an "hierarchical" autocomplete. For example, I have a "Country" dropdown list and a "City" textbox. A user would select a country from the dropdown list, and then type out t

Re: Non-prefix, hierarchical autocomplete? Would SOLR-1316 work? Solritas?

2010-06-19 Thread Andy
Forgot to add, I would like to order the autocomplete suggestions for tags/cities based on how many times they are present in the documents. --- On Sat, 6/19/10, Andy wrote: > From: Andy > Subject: Non-prefix, hierarchical autocomplete? Would SOLR-1316 work? > Solritas? > T

Non-prefix, hierarchical autocomplete? Would SOLR-1316 work? Solritas?

2010-06-19 Thread Andy
Hi, I've seen some posts on using SOLR-1316 or Solritas for autocomplete. Wondered what is the best solution for my use case: 1) I would like to have an "hierarchical" autocomplete. For example, I have a "Country" dropdown list and a "City" textbox. A us

Re: Autsuggest/autocomplete/spellcheck phrases

2010-06-17 Thread Blargy
nabble.com/Autsuggest-autocomplete-spellcheck-phrases-tp902951p903299.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Autsuggest/autocomplete/spellcheck phrases

2010-06-17 Thread Michael
e too. > > I think I am having the biggest trouble distinguishing what needs to be done > for autocomplete/autosuggestion (google like behavior) and a separate issue > involving spellchecking (Did you mean...). I guess I originally thought > those 2 distinct features would involve the sa

Re: Autsuggest/autocomplete/spellcheck phrases

2010-06-17 Thread Blargy
o. I think I am having the biggest trouble distinguishing what needs to be done for autocomplete/autosuggestion (google like behavior) and a separate issue involving spellchecking (Did you mean...). I guess I originally thought those 2 distinct features would involve the same solution but it appears

Re: Autsuggest/autocomplete/spellcheck phrases

2010-06-17 Thread Michael
this : Let me know how this works for you. On Thu, Jun 17, 2010 at 11:05 AM, Blargy wrote: > > How can I preserve phrases for either autosuggest/autocomplete/spellcheck? > > For example we have a bunch of product listings and I want if someone types: > "louis" for it to

Autsuggest/autocomplete/spellcheck phrases

2010-06-17 Thread Blargy
How can I preserve phrases for either autosuggest/autocomplete/spellcheck? For example we have a bunch of product listings and I want if someone types: "louis" for it to common up with "Louis Vuitton". "World" ... "World cup". Would I need n-grams? Sh

Re: Autosuggest/Autocomplete with solr 1.4 and EdgeNGrams

2010-02-25 Thread Sachin
Calderon To: solr-user@lucene.apache.org Sent: Wed, Feb 24, 2010 10:22 pm Subject: Re: Autosuggest/Autocomplete with solr 1.4 and EdgeNGrams i had to create a autosuggest implementation not too long ago, originally i was using faceting, where i would match wildcards on a tokenized field and facet on

Re: Autosuggest/Autocomplete with solr 1.4 and EdgeNGrams

2010-02-24 Thread Smiley, David W.
On Feb 24, 2010, at 1:17 AM, Sachin wrote: > Hi All, > > I am trying to setup autosuggest using solr 1.4 for my site and needed some > pointers on that. Basically, we provide autosuggest for user typed in > characters in the searchbox. The autosuggest index is created with older user > typed

Re: Autosuggest/Autocomplete with solr 1.4 and EdgeNGrams

2010-02-24 Thread Joe Calderon
i had to create a autosuggest implementation not too long ago, originally i was using faceting, where i would match wildcards on a tokenized field and facet on an unaltered field, this had the advantage that i could do everything from one index, though it was also limited by the fact suggestions ca

Re: Autosuggest/Autocomplete with solr 1.4 and EdgeNGrams

2010-02-24 Thread Grant Ingersoll
You might also look at http://issues.apache.org/jira/browse/SOLR-1316 On Feb 24, 2010, at 1:17 AM, Sachin wrote: > > > Hi All, > > I am trying to setup autosuggest using solr 1.4 for my site and needed some > pointers on that. Basically, we provide autosuggest for user typed in > characters

Autosuggest/Autocomplete with solr 1.4 and EdgeNGrams

2010-02-23 Thread Sachin
Hi All, I am trying to setup autosuggest using solr 1.4 for my site and needed some pointers on that. Basically, we provide autosuggest for user typed in characters in the searchbox. The autosuggest index is created with older user typed in search queries which returned > 0 results. We do so

Re: Implementing Autocomplete/Query Suggest using Solr

2010-01-04 Thread Prasanna R
On Mon, Jan 4, 2010 at 1:20 AM, Shalin Shekhar Mangar < shalinman...@gmail.com> wrote: > On Wed, Dec 30, 2009 at 3:07 AM, Prasanna R wrote: > > > I looked into the Solr/Lucene classes and found the required > information. > > Am summarizing the same for the benefit of those that might refer to t

Re: Implementing Autocomplete/Query Suggest using Solr

2010-01-04 Thread Shalin Shekhar Mangar
On Wed, Dec 30, 2009 at 3:07 AM, Prasanna R wrote: > I looked into the Solr/Lucene classes and found the required information. > Am summarizing the same for the benefit of those that might refer to this > thread in the future. > > The change I had to make was very simple - make a call to getPre

Re: Implementing Autocomplete/Query Suggest using Solr

2009-12-29 Thread Prasanna R
> > > > > We do auto-complete through prefix searches on shingles. > > > > > > > Just to confirm, do you mean using EdgeNgram filter to produce letter > > ngrams > > of the tokens in the chosen field? > > > > > >> No, I'm talking about prefix search on tokens produced by a ShingleFilter. >> > > I d

Re: Implementing Autocomplete/Query Suggest using Solr

2009-12-28 Thread Prasanna R
On Wed, Dec 23, 2009 at 10:52 PM, Shalin Shekhar Mangar < shalinman...@gmail.com> wrote: > On Thu, Dec 24, 2009 at 2:39 AM, Prasanna R wrote: > > > On Tue, Dec 22, 2009 at 11:49 PM, Shalin Shekhar Mangar < > > shalinman...@gmail.com> wrote: > > > > > > > > > I am curious how an approach that sim

Re: Implementing Autocomplete/Query Suggest using Solr

2009-12-23 Thread Shalin Shekhar Mangar
On Thu, Dec 24, 2009 at 2:39 AM, Prasanna R wrote: > On Tue, Dec 22, 2009 at 11:49 PM, Shalin Shekhar Mangar < > shalinman...@gmail.com> wrote: > > > > > > I am curious how an approach that simply uses the wildcard query > > > functionality on an indexed field would work. > > > > > > It works fi

Re: Implementing Autocomplete/Query Suggest using Solr

2009-12-23 Thread Prasanna R
On Tue, Dec 22, 2009 at 11:49 PM, Shalin Shekhar Mangar < shalinman...@gmail.com> wrote: > > > I am curious how an approach that simply uses the wildcard query > > functionality on an indexed field would work. > > > It works fine as long as the terms are not repeated across documents. > > I do n

RE: Implementing Autocomplete/Query Suggest using Solr

2009-12-23 Thread Ankit Bhatnagar
@lucene.apache.org Subject: Re: Implementing Autocomplete/Query Suggest using Solr On Wed, Dec 23, 2009 at 6:14 AM, Prasanna R wrote: > > I am curious how an approach that simply uses the wildcard query > functionality on an indexed field would work. It works fine as long as the terms are not

Re: Implementing Autocomplete/Query Suggest using Solr

2009-12-22 Thread Shalin Shekhar Mangar
On Wed, Dec 23, 2009 at 6:14 AM, Prasanna R wrote: > > I am curious how an approach that simply uses the wildcard query > functionality on an indexed field would work. It works fine as long as the terms are not repeated across documents. > While Solr does not support > wildcard queries out o

Implementing Autocomplete/Query Suggest using Solr

2009-12-22 Thread Prasanna R
queries out of the box currently, it will definitely be included in the future and I believe the edismax parser already lets you do that. Would using the wildcard query to implement autocomplete have high overhead and be less efficient than the other approaches? Am I missing anything here? Kindly

Re: how to get the autocomplete feature in solr 1.4?

2009-11-23 Thread Andrzej Bialecki
Chris Hostetter wrote: : how to get the autocomplete/autosuggest feature in the solr1.4.plz give me : the code also... there is no magical "one size fits all" solution for autocomplete in solr. if you look at the archives there have been lots of discussions about differnet ways o

Re: how to get the autocomplete feature in solr 1.4?

2009-11-23 Thread Chris Hostetter
: how to get the autocomplete/autosuggest feature in the solr1.4.plz give me : the code also... there is no magical "one size fits all" solution for autocomplete in solr. if you look at the archives there have been lots of discussions about differnet ways ot get auto complete fun

how to get the autocomplete feature in solr 1.4?

2009-11-17 Thread muralie39
hi, how to get the autocomplete/autosuggest feature in the solr1.4.plz give me the code also... -- View this message in context: http://old.nabble.com/how-to-get-the-autocomplete-feature-in-solr-1.4--tp26402992p26402992.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: Solr YUI autocomplete

2009-11-02 Thread Ankit Bhatnagar
Solr YUI autocomplete It does, have you looked at http://wiki.apache.org/solr/SolJSON?highlight=%28json%29#Using_Solr.27s_JSON_output_for_AJAX. Also, in my book on Solr, there is an example, but using the jquery autocomplete, which I think was answered earlier on the thread! Hope that

Re: Solr YUI autocomplete

2009-11-02 Thread Eric Pugh
It does, have you looked at http://wiki.apache.org/solr/SolJSON?highlight=%28json%29#Using_Solr.27s_JSON_output_for_AJAX. Also, in my book on Solr, there is an example, but using the jquery autocomplete, which I think was answered earlier on the thread! Hope that helps. ANKITBHATNAGAR wrote

RE: Solr YUI autocomplete

2009-11-02 Thread Ankit Bhatnagar
ssage- From: Amit Nithian [mailto:anith...@gmail.com] Sent: Monday, November 02, 2009 1:00 AM To: solr-user@lucene.apache.org Subject: Re: Solr YUI autocomplete I've used the YUI auto complete (albeit not with Solr which shouldn't matter here) and it should work with JSON. I did one t

Re: Solr YUI autocomplete

2009-11-01 Thread Amit Nithian
t; > > > -Original Message- > From: Ankit Bhatnagar [mailto:abhatna...@vantage.com] > Sent: Friday, October 30, 2009 10:27 AM > To: 'solr-user@lucene.apache.org' > Subject: Solr YUI autocomplete > > Hi Guys, > > I have question regarding - how to sp

RE: autocomplete

2009-11-01 Thread Ankit Bhatnagar
Hey Avlesh, Thanks for your reply. -Ankit -Original Message- From: Avlesh Singh [mailto:avl...@gmail.com] Sent: Saturday, October 31, 2009 10:08 PM To: solr-user@lucene.apache.org Subject: Re: autocomplete > > > "q=*:*&fq=ac:*all*&wt=json&rows=15&sta

Re: autocomplete

2009-10-31 Thread Avlesh Singh
esh On Sat, Oct 31, 2009 at 12:13 AM, Ankit Bhatnagar wrote: > > Hi guys, > > Enterprise 1.4 Solr Book (AutoComplete) says this works - > > My query looks like - > > > "q=*:*&fq=ac:*all*&wt=json&rows=15&start=0&indent=on&omitHeader=true&am

autocomplete

2009-10-30 Thread Ankit Bhatnagar
Hi guys, Enterprise 1.4 Solr Book (AutoComplete) says this works - My query looks like - "q=*:*&fq=ac:*all*&wt=json&rows=15&start=0&indent=on&omitHeader=true&json.wrf=?"; And it returns three results { "responseHeader":{ "statu

Solr YUI autocomplete

2009-10-30 Thread Ankit Bhatnagar
Does Solr supports JSONP (JSON with Padding) in the response? -Ankit -Original Message- From: Ankit Bhatnagar [mailto:abhatna...@vantage.com] Sent: Friday, October 30, 2009 10:27 AM To: 'solr-user@lucene.apache.org' Subject: Solr YUI autocomplete Hi Guys, I have question

Solr YUI autocomplete

2009-10-30 Thread Ankit Bhatnagar
Hi Guys, I have question regarding - how to specify the I am using YUI autocomplete widget and it expects the JSONP response. http://localhost:8983/solr/select/?q=monitor&version=2.2&start=0&rows=10&indent=on&wt=json&json.wrf= I am not sure how should I specify the j

Re: Need help to finalize my autocomplete

2009-09-16 Thread Vincent Pérès
After re-indexing it works very well ! Thanks a lot ! Vincent -- View this message in context: http://www.nabble.com/Need-help-to-finalize-my-autocomplete-tp25468885p25469931.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Need help to finalize my autocomplete

2009-09-16 Thread Shalin Shekhar Mangar
2009/9/16 Vincent Pérès > > Hello, > > I tried to replace the class as you suggested, but I still get the same > result (and not results where the query start only with the giving query). > > Make sure you re-index your documents after change the schema. -- Regards, Shalin Shekhar Mangar.

Re: Need help to finalize my autocomplete

2009-09-16 Thread Vincent Pérès
://www.nabble.com/Need-help-to-finalize-my-autocomplete-tp25468885p25469239.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Need help to finalize my autocomplete

2009-09-16 Thread Avlesh Singh
Instead of use Cheers Avlesh 2009/9/16 Vincent Pérès > > Hello, > > I'm using the following code for my autocomplete feature : > > The field type : > > > > > > minGramSize="2" /> >

Need help to finalize my autocomplete

2009-09-16 Thread Vincent Pérès
Hello, I'm using the following code for my autocomplete feature : The field type : The field : The query : ?q=*:*&fq=query_ac:harry*&wt=json&rows=15&start=0&fl=*&inden

RE: Question about autocomplete feature

2008-09-03 Thread sundar shankar
Did u reindex after the change? > Date: Wed, 27 Aug 2008 23:43:05 +0300 > From: [EMAIL PROTECTED] > To: solr-user@lucene.apache.org > Subject: Question about autocomplete feature > > > Hello. > > I'm trying to implement autocomplete feature using the snippet

Re: Question about autocomplete feature

2008-09-02 Thread Chris Hostetter
: First I decided to make it working for solr example. So I pasted the : snippet to schema.xml. Then I edited exampledocs/hd.xml, I added the : "ac" field to each doc. Value of "ac" field is a copy of name filed: you didn't need to do that, you could have just used a copyField to make "ac" get a

Question about autocomplete feature

2008-08-27 Thread Aleksey Gogolev
Hello. I'm trying to implement autocomplete feature using the snippet posted by Dan. (http://mail-archives.apache.org/mod_mbox/lucene-solr-user/200807.mbox/[EMAIL PROTECTED]) Here is the sn

Re: Certain form of autocomplete (like Google Suggest)

2008-07-09 Thread Walter Underwood
For capacity planning, our autocomplete gets more than 10X as many requests as our search. Solr can handle our search just fine, but I wrote an in-memory prefix match to handle the 25-30M autocomplete matches each day. I load that by doing Solr queries, so the two stay in sync. wunder On 7/9/08

Re: Certain form of autocomplete (like Google Suggest)

2008-07-09 Thread Yonik Seeley
> for a wine shop with 2500 articles and about 20 fields, with faceted > search. > > Now I'd like to know what would be the best way to implement a search > term autocompletion in the way of Google Suggest > (http://www.google.com/webhp?complete=1&hl=en). > > Most a

Re: Certain form of autocomplete (like Google Suggest)

2008-07-09 Thread Chris Hostetter
: Now I'd like to know what would be the best way to implement a search : term autocompletion in the way of Google Suggest : (http://www.google.com/webhp?complete=1&hl=en). : : Most autocomplete implementations aim to display search result entries : during input. What Suggest does, and

Certain form of autocomplete (like Google Suggest)

2008-07-04 Thread Marian Steinbach
t a search term autocompletion in the way of Google Suggest (http://www.google.com/webhp?complete=1&hl=en). Most autocomplete implementations aim to display search result entries during input. What Suggest does, and what I'd like to accomplish, is an automatic suggestion of relevant inde

Re: Your valuable suggestion on autocomplete

2008-05-06 Thread Walter Underwood
e >> From: Walter Underwood <[EMAIL PROTECTED]> >> To: solr-user@lucene.apache.org >> Sent: Tuesday, May 6, 2008 11:21:31 AM >> Subject: Re: Your valuable suggestion on autocomplete >> >> I wrote a prefix map (ternary search tree) in Java and load it

Re: Your valuable suggestion on autocomplete

2008-05-06 Thread Otis Gospodnetic
Hi Wunder, - Original Message > From: Walter Underwood <[EMAIL PROTECTED]> > To: solr-user@lucene.apache.org > Sent: Tuesday, May 6, 2008 11:21:31 AM > Subject: Re: Your valuable suggestion on autocomplete > > I wrote a prefix map (ternary search tree) in Java an

Re: Your valuable suggestion on autocomplete

2008-05-06 Thread Walter Underwood
I wrote a prefix map (ternary search tree) in Java and load it with queries to Solr every two hours. That keeps the autocomplete and search index in sync. Our autocomplete gets over 25M hits per day, so we don't really want to send all that traffic to Solr. wunder On 5/6/08 2:37 AM, &qu

Re: Your valuable suggestion on autocomplete

2008-05-06 Thread Nishant Soni
: Vaijanath N. Rao <[EMAIL PROTECTED]> To: solr-user@lucene.apache.org Sent: Tuesday, May 6, 2008 12:43:25 PM Subject: Re: Your valuable suggestion on autocomplete Hi Rantjil Bould, I would suggest you to give a thought on Trie data structure which is used for auto-complete. Hitting Solr for

Re: Your valuable suggestion on autocomplete

2008-05-06 Thread Vaijanath N. Rao
solr index which lies on disk) --Thanks and Regards Vaijanath Rantjil Bould wrote: Hi Group, I have already got some valuable suggestions from group. Based on that, I have come out with following process to finally implement autocomplete like fetaure in my system 1- Index the whole

Your valuable suggestion on autocomplete

2008-05-05 Thread Rantjil Bould
Hi Group, I have already got some valuable suggestions from group. Based on that, I have come out with following process to finally implement autocomplete like fetaure in my system 1- Index the whole documents 2- Extract all terms using indexReader's terms() method I am getting

RE: Solr + autocomplete

2007-11-12 Thread Park, Michael
Will I need to use Solr 1.3 with the EdgeNGramFilterFactory in order to get the autosuggest feature? -Original Message- From: Chris Hostetter [mailto:[EMAIL PROTECTED] Sent: Monday, November 12, 2007 1:05 PM To: solr-user@lucene.apache.org Subject: RE: Solr + autocomplete : "

RE: Solr + autocomplete

2007-11-12 Thread Chris Hostetter
: "Error loading class 'solr.EdgeNGramFilterFactory'". For some reason EdgeNGramFilterFactory didn't exist when Solr 1.2 was released, but the EdgeNGramTokenizerFactory did. (the javadocs that come with each release list all of the various factories in that release) -Hoss

RE: Solr + autocomplete

2007-11-12 Thread Park, Michael
t;. Any suggestions? Thanks, Mike -Original Message- From: Ryan McKinley [mailto:[EMAIL PROTECTED] Sent: Monday, October 15, 2007 4:44 PM To: solr-user@lucene.apache.org Subject: Re: Solr + autocomplete > > I would imagine there is a library to set up an autocomplete search with

RE: Solr + autocomplete

2007-10-18 Thread Park, Michael
Thx! I remember coming across extjs a ways back. It was very slick. I'll give it a try. -Original Message- From: Bharani [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 5:59 AM To: solr-user@lucene.apache.org Subject: RE: Solr + autocomplete You should take a look at

RE: Solr + autocomplete

2007-10-18 Thread Bharani
You should take a look at http:\\www.extjs.com. The combo box has got an autocomplete fultionality. Infact it even has paging built into it. I just did a demo using Solr for autocomplete and i got a very good responsive GUI. I have got about 100,000 documents with 26 fields each and get a

Re: Solr + autocomplete

2007-10-15 Thread Ryan McKinley
al Message- From: Ryan McKinley [mailto:[EMAIL PROTECTED] Sent: Monday, October 15, 2007 4:44 PM To: solr-user@lucene.apache.org Subject: Re: Solr + autocomplete I would imagine there is a library to set up an autocomplete search with Solr. Does anyone have any suggestions? Scriptacu

RE: Solr + autocomplete

2007-10-15 Thread Park, Michael
rg Subject: Re: Solr + autocomplete > > I would imagine there is a library to set up an autocomplete search with > Solr. Does anyone have any suggestions? Scriptaculous has a JavaScript > autocomplete library. However, the server must return an unordered > list. > Solr does

Re: Solr + autocomplete

2007-10-15 Thread Ryan McKinley
I would imagine there is a library to set up an autocomplete search with Solr. Does anyone have any suggestions? Scriptaculous has a JavaScript autocomplete library. However, the server must return an unordered list. Solr does not provide an autocomplete UI, but it can return JSON that a

<    1   2   3   4