Restricting the number of docs per search field

2006-02-27 Thread emerson cargnin
Hi all Due a performance problem, I'm looking a way of restricting the docs returned based of the number of docs which a field has the same value. At the moment we just discard the docs if more than a X number for the same field, but I think it can be done by lucence, hence improving a lot the per

Re: Question to Lucene Index

2006-02-27 Thread Erik Hatcher
On Feb 27, 2006, at 4:06 AM, Thomas Papke wrote: Thank you for all your good answers The restriction i want to search with looks somethinks like this: I want to do some searching for A in diffenerent Fields and i want to prohibite some user/usergroups specific field values. I am right to

SearchBlox Content Search Software Version 3.2 released

2006-02-27 Thread Robert Selvaraj
SearchBlox Software has released Version 3.2 of its J2EE Content Search Software. SearchBlox delivers out-of-the-box search functionality for quick and easy integration with websites, applications, intranets and portals. SearchBlox uses the Lucene Search API and incorporates integrated HTTP/HTTPS,

Re: Get list with found words for a hit?

2006-02-27 Thread Nadav Har'El
"Samuru Jackson" <[EMAIL PROTECTED]> wrote on 27/02/2006 01:50:11 PM: > Is there a way to retrieve a List of the matching words for a Hit? > For example I create a query like this one: > "Paris London -Stockholm" > ... > How do I know which words have been found in a document? In one it could be >

SearchBlox Content Search Software Version 3.2 released

2006-02-27 Thread Robert Selvaraj
SearchBlox Software has released Version 3.2 of its J2EE Content Search Software. SearchBlox delivers out-of-the-box search functionality for quick and easy integration with websites, applications, intranets and portals. SearchBlox uses the Lucene Search API and incorporates integrated HTTP/HTTPS,

Get list with found words for a hit?

2006-02-27 Thread Samuru Jackson
Hi! Is there a way to retrieve a List of the matching words for a Hit? For example I create a query like this one: "Paris London -Stockholm" Now I get a Hit object with a couple of results back where I can iterate over the documents: for (int i = 0; i < hits.length(); i++) { Do

Problem with reverse ordering

2006-02-27 Thread Enrique Lamas
Hi, I have an index with some fields, one of them is a String representing a date in the format MMddHHmmss. I store this field as a Keyword to be sortable. My problem is that I obtain the results in the same order with Hits hits = is.search(query, new Sort("formatted-date")); than Hits hits

Re: Indexing speed

2006-02-27 Thread Otis Gospodnetic
Here: http://www.onjava.com/pub/a/onjava/2003/03/05/lucene.html - Original Message From: [EMAIL PROTECTED] To: java-user@lucene.apache.org Sent: Monday, February 27, 2006 4:24:27 AM Subject: RE: Indexing speed maxBufferedDocs parameters. You can also look for my article about indexing

RE: Indexing speed

2006-02-27 Thread anton
maxBufferedDocs parameters. You can also look for my article about indexing with Lucene (link in the Wiki), which includes code for playing with various parameters and explains what's going on, etc. Sorry, but where this link ? Where placed your article ? Please, give me url. -

Re: Question to Lucene Index

2006-02-27 Thread Thomas Papke
Thank you for all your good answers The restriction i want to search with looks somethinks like this: I want to do some searching for A in diffenerent Fields and i want to prohibite some user/usergroups specific field values. I am right to do it in this way: BooleanQuery q1 = new BooleanQuery

RE: Indexing speed

2006-02-27 Thread anton
maxBufferedDocs parameters. You can also look for my article about indexing with Lucene (link in the Wiki), which includes code for playing with various parameters and explains what's going on, etc. Sorry, but where this link ?