Re: Group by in Lucene ?

2009-01-27 Thread Marcus Herou
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

Re: Lucene Index Monitor

2009-01-27 Thread Otis Gospodnetic
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

Re: Lucene 2.4 - Searching

2009-01-27 Thread Antony Bowesman
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

Re: Lucene Index Monitor

2009-01-27 Thread John Wang
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

Re: Lucene 2.4 - Searching

2009-01-27 Thread Ian Lea
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

Lucene 2.4 - Searching

2009-01-27 Thread Karl Heinz Marbaise
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