Solr Analysis Webinar Jan 28, 2010

2010-01-20 Thread Jay Hill
My colleague at Lucid Imagination, Tom Hill, will be presenting a free webinar focused on analysis in Lucene/Solr. If you're interested, please sign up and join us. Here is the official notice: We'd like to invite you to a free webinar our company is offering next Thursday, 28 January, at 2PM

Stemmers remove part of a query when using QueryParser

2008-01-25 Thread Jay Hill
I have added stemming Analyzer to my indexing and searching. I've tried both Porter and KStem, have gotten very good results with both with KStem being the best. The only problem is that, when analyzing on the search end using QueryParser part of my query is being removed by QueryParser:

Analyzer choices for indexing and searching multiple languages

2007-12-26 Thread Jay Hill
I'm working on a project where we will be searching across several languages with a single query. There will be different categories which will include different groups of languages to search (i.e. category a: English, French, Spanish; category b: Spanish, Portugese, Itailian, etc) Originally I

Analyzer to use with MultiSearcher using various indexes for multiple languages

2007-12-17 Thread Jay Hill
I'm working on a project where we are indexing content for several different languages - English, Spanish, French and German. I have built separate indexes for each language using the proper Analyzer for each language(StandardAnalyzer for English, FrenchAnalyzer for French, etc.). We have a

Re: Need a way to set a result limit on a particular field

2005-06-16 Thread Jay Hill
field. Then do your check and only pull pack the rest of the document if you need to. This will help with speed if you are going through a lot of documents and each document is big. On 6/15/05, Jay Hill [EMAIL PROTECTED] wrote: I like this approach. This may be what I'm looking for. Thanks

Re: Need a way to set a result limit on a particular field

2005-06-15 Thread Jay Hill
was hoping to avoid the HitCollector, but there may be no other way right now. Many thanks, -Jay On 6/14/05, Erik Hatcher [EMAIL PROTECTED] wrote: On Jun 14, 2005, at 7:23 PM, Jay Hill wrote: I have a need to limit my Hits returned based on one of the indexed fields. This is a web application

Re: Need a way to set a result limit on a particular field

2005-06-15 Thread Jay Hill
to the use... } } Hope it helped ! Jp -Original Message- From: Jay Hill [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 15, 2005 2:01 PM To: java-user@lucene.apache.org Subject: Re: Need a way to set a result limit on a particular field Thanks Tony and Erik

Need a way to set a result limit on a particular field

2005-06-14 Thread Jay Hill
I have a need to limit my Hits returned based on one of the indexed fields. This is a web application and we want to limit the number of hits from any one host. We have a field named host_id and I'd like to be able to limit my results to no more than three results for any one host_id. Any help is