Hi.
I did partly solve this with Solr with faceting but it does not solve the
quite normally use feature in db's:
num_en_entries = select count distinct(id) from BlogEntry where
language='en'
num_sv_entries = select count distinct(id) from BlogEntry where
language='sv'
it solves however the featu
What about lucli?
Otis
--
Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch
- Original Message
> From: John Wang
> To: java-user@lucene.apache.org
> Sent: Tuesday, January 27, 2009 6:40:30 PM
> Subject: Re: Lucene Index Monitor
>
> Luke is great, but sometimes you don't have
Karl Heinz Marbaise wrote:
I have a field which is called filename and contains a filename which
can of course be lowercase or upppercase or a mixture...
I would like to do the following:
+filename:/*scm*.doc
That should result in getting things like
/...SCMtest.doc
/...scmtest.doc
/...scm
Luke is great, but sometimes you don't have a windowing system installed on
the target machine. A webapp like LIMO is very useful. It is unfortunate
that it is not being maintained.
-John
On Mon, Jan 26, 2009 at 3:44 PM, Chris Hostetter
wrote:
>
> : I need to monitor my searches and index. i kn
Hi
Sounds like a job for RegexQuery. If you can't figure out how to use
it Google will throw up some examples. You can downcase everything
yourself or use an analyzer that does it or maybe use a case
insensitive regexp.
Depending on your file names you might want to avoid StandardAnalyzer.
It
Hi there,
I'm trying to do a, from my point of view, simple thing.
I would like to do a search ignoring the case of the stored information
in the index...with the following code:
reader = IndexReader.open(indexDirectory);
Searcher searcher = new IndexSearcher(reader);
Analyze