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 Eas
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:
+pub:game
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
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 require
ust
> pull back your host 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 l
Count.inc(host_id);
>
>if(hostFreqCount.get(host_id) > 3) continue;
>
> /// show the hit to the use...
>
> }
> }
>
>
> Hope it helped !
>
> Jp
>
>
> -Original Message-
> From: Jay Hill [mailto:[EMAIL PROTECTED]
> Sent: Wed
using HitCollector as Tony
suggests. I 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 return
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 i