Re: svn commit: r329384 - /lucene/java/trunk/src/test/org/apache/lucene/search/spans/TestSpans.java

2005-10-30 Thread Paul Elschot
On Saturday 29 October 2005 11:48, [EMAIL PROTECTED] wrote: Author: ehatcher Date: Sat Oct 29 02:48:22 2005 New Revision: 329384 URL: http://svn.apache.org/viewcvs?rev=329384view=rev Log: additional span tests that have been lingering in my working copy for ages For the record, some of

[jira] Created: (LUCENE-460) hashCode improvements

2005-10-30 Thread Yonik Seeley (JIRA)
hashCode improvements - Key: LUCENE-460 URL: http://issues.apache.org/jira/browse/LUCENE-460 Project: Lucene - Java Type: Improvement Components: Search Versions: CVS Nightly - Specify date in submission Reporter: Yonik Seeley

[jira] Commented: (LUCENE-460) hashCode improvements

2005-10-30 Thread Yonik Seeley (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-460?page=comments#action_12356325 ] Yonik Seeley commented on LUCENE-460: - A couple of guidelines off the top of my head... - hash codes should strive to be unique across the Query hierarchy, not just

[jira] Commented: (LUCENE-460) hashCode improvements

2005-10-30 Thread Yonik Seeley (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-460?page=comments#action_12356326 ] Yonik Seeley commented on LUCENE-460: - Oh, and preserve entropy by using reversible integer hash functions (see the previous link). - key ^= (key a) | (key b); for

bytecount as String and prefix length

2005-10-30 Thread Marvin Humphrey
Greets, I've been experimenting with using the UTF-8 bytecount as the VInt count at the top of Lucene's string format, as was discussed back in the Lucene does NOT use UTF-8 thread. Changes were made to IndexInput and IndexOutput as per some of Robert Engel's suggestions. Here's the

Re: Help requested

2005-10-30 Thread daniel.a.clark
The contents field searches on the entire document, including all indexes. From: Urvashi Gadi [EMAIL PROTECTED] Date: Sun Oct 30 21:18:56 CST 2005 To: java-dev@lucene.apache.org Subject: Help requested Hi All, I am new to Lucene and am trying to use Lucene for our digital library search engine.

Re: Help requested

2005-10-30 Thread Erik Hatcher
Please post to java-user in the future. java-dev is for discussion of the internals of Lucene. On 30 Oct 2005, at 22:18, Urvashi Gadi wrote: I am new to Lucene and am trying to use Lucene for our digital library search engine. I have a couple of questions 1. Is there a way to use

[jira] Commented: (LUCENE-460) hashCode improvements

2005-10-30 Thread paul.elschot (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-460?page=comments#action_12356384 ] paul.elschot commented on LUCENE-460: -  - hash codes should strive to be unique across the Query hierarchy, not just unique within one specific subclass. For example,