Updating solr search suggest file using rest managed resources

2015-02-11 Thread Zheng Yang
Hi List, For file based search suggest ( https://cwiki.apache.org/confluence/display/solr/Suggester), a file needs to be provided. And I found managed resources ( https://cwiki.apache.org/confluence/display/solr/Managed+Resources) can let user feed in data using rest services. My question is

Re: Search Suggest for full content with Filter option

2012-10-28 Thread Sujatha Arun
Any Suggestions on this? On Sun, Oct 28, 2012 at 1:30 PM, Sujatha Arun wrote: > Hello, > > I want suggestions for full content of several books with a filter > that restricts suggestions to a single book .However the best options of > suggester and terms component do not support filter. > >

Re: search suggest

2009-08-01 Thread Ingo Renner
Am 28.07.2009 um 19:53 schrieb Jack Bates: Hi Jack, - and searching for "solr suggest" - but haven't figured out how to get search suggestions from solr There're two easy ways out of the box that I see currently: A) using a requesthandler with a TermsComponent Advantage: easy and fast Di

Re: search suggest

2009-07-30 Thread Shalin Shekhar Mangar
On Thu, Jul 30, 2009 at 4:52 AM, Jason Rutherglen < jason.rutherg...@gmail.com> wrote: > I created an issue and have added some notes > https://issues.apache.org/jira/browse/SOLR-1316 > Also see https://issues.apache.org/jira/browse/SOLR-706 -- Regards, Shalin Shekhar Mangar.

Re: search suggest

2009-07-29 Thread Jason Rutherglen
on.rutherg...@gmail.com] >> Sent: Wednesday, July 29, 2009 12:09 PM >> To: solr-user@lucene.apache.org >> Subject: Re: search suggest >> >> Autosuggest is something that would be very useful to build into >> Solr as many search projects require it. >> >>

Re: search suggest

2009-07-29 Thread Jason Rutherglen
t; -Original Message- > From: Jason Rutherglen [mailto:jason.rutherg...@gmail.com] > Sent: Wednesday, July 29, 2009 12:09 PM > To: solr-user@lucene.apache.org > Subject: Re: search suggest > > Autosuggest is something that would be very useful to build into > Solr as many se

RE: search suggest

2009-07-29 Thread Robert Petersen
rases? -Original Message- From: Jason Rutherglen [mailto:jason.rutherg...@gmail.com] Sent: Wednesday, July 29, 2009 12:09 PM To: solr-user@lucene.apache.org Subject: Re: search suggest Autosuggest is something that would be very useful to build into Solr as many search projects require it. I'd

Re: search suggest

2009-07-29 Thread manuel aldana
also watch out that you have a good stopwords list otherwise the suggestions won't be helpful for the user. Jack Bates wrote: how can i use solr to make search suggestions? i'm thinking google-style suggestions, which suggests more refined queries - vs. freebase-style suggestions, which suggest

Re: search suggest

2009-07-29 Thread Jason Rutherglen
pen an issue in Solr to get this one going. > > On Wed, Jul 29, 2009 at 9:12 AM, Robert Petersen wrote: >> To do a proper search suggest feature you have to index all the queries >> your system gets and search it with wildcards for matches on what the >> user has typed so

Re: search suggest

2009-07-29 Thread Jason Rutherglen
which improves relevancy using click through rates. I'll open an issue in Solr to get this one going. On Wed, Jul 29, 2009 at 9:12 AM, Robert Petersen wrote: > To do a proper search suggest feature you have to index all the queries > your system gets and search it with wildcards for matches on

RE: search suggest

2009-07-29 Thread Robert Petersen
To do a proper search suggest feature you have to index all the queries your system gets and search it with wildcards for matches on what the user has typed so far for each user keystroke in the search box... Usually with some timer logic to wait for a small hesitation in their typing

search suggest

2009-07-28 Thread Jack Bates
how can i use solr to make search suggestions? i'm thinking google-style suggestions, which suggests more refined queries - vs. freebase-style suggestions, which suggests top hits. i've been looking at the query params, http://wiki.apache.org/solr/StandardRequestHandler - and searching for "solr