Multi-field query - determining which fields are hit

2008-06-03 Thread Michael Garski
Hello, In performing a multi-field query, is there a way to determine which field(s) the query matched in short of running a query against each of the fields independently? Could payloads be utilized for something like this? Thanks, Michael

Re: Typical Indexing performance

2008-06-03 Thread Marcelo Ochoa
Hi: Here my latest testing of Oracle-Lucene integration (Lucene 2.3.2 binary dist. / Oracle 11g): http://marceloochoa.blogspot.com/2008/06/new-binary-release-of-lucene-oracle.html Tested against Spanish Wikipedia Dumps and using Wikipedia Analyzer/Tokenizer. There is independent times for upl

Question about indexing (BrazilianAnalyzer)

2008-06-03 Thread Vinicius Carvalho
Hello there! I'm indexing documents using the BrazilianAnalyzer, and I've noticed that many words are not being indexed. I store and index the entire doc (I'm doing this in order to present the fragments on the results, don't know if its the best way, mostly on large docs, any ideas?). Well using l

Re: Typical Indexing performance

2008-06-03 Thread Otis Gospodnetic
There i really no "typical". I'm playing with Hadoop (HDFS) and Solr at the moment, for example, and I'm seeing indexing rate of cca 70 docs/second. However, the bottleneck there is not indexing, it is reading data from HDFS (over the network). I've also seen 500+ docs/second. It depends on

Re: Typical Indexing performance

2008-06-03 Thread Grant Ingersoll
Of course it depends on analysis, etc., but my experience has been at least 2x faster, if not up to 4-5 times depending on the docs, etc. You can use the contrib/benchmark package to try for yourself, of course! On Jun 2, 2008, at 7:40 PM, Simon Wistow wrote: I know this is one of those

Re: BooleanQuery Example

2008-06-03 Thread Ian Lea
Hi It's pretty straightforward. Create a BooleanQuery and add other queries to it e.g. BooleanQuery bq = new BooleanQuery(); TermQuery tq = new TermQuery(new Term(k, v)); RangeQuery rq = new RangeQuery(new Term(k1, v0), new Term(k1, v1),

RE: BooleanQuery Example

2008-06-03 Thread Aamir.Yaseen
Hi all, Sorry for bothering again, I am referring Lucene Documentation at http://lucene.apache.org/java/docs/queryparsersyntax.html that suggests >> If you are programmatically generating a query string and then parsing it with the query parser then you >>should seriously consider building your

Typical Indexing performance

2008-06-03 Thread Simon Wistow
I know this is one of those "How long is a piece of string?" questions but I'm curious as to the order of magnitude of indexing performance. http://lucene.apache.org/java/docs/benchmarks.html seems to indicate about 100-120 docs/s is pretty good for average sized documents (say, an email or som

Re: Lucene ignoring query to a field containing single character values

2008-06-03 Thread ryan catambing
Hi Stephan, Thank you for the feedback. I followed your suggestion and it did the job. Thanks, Ryan On Mon, Jun 2, 2008 at 11:58 PM, <[EMAIL PROTECTED]> wrote: > Hi ryan, > > I guess you use the StandardAnalyzer with standard constructor. The > standard analyzer uses a list of stopwords. And