[jira] Commented: (LUCENE-671) Hashtable based Document

2006-09-14 Thread Chris (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-671?page=comments#action_12434769 ] Chris commented on LUCENE-671: -- After some digging: http://www-128.ibm.com/developerworks/java/library/j-jtp1029.html If these classes are declared final for perform

[jira] Commented: (LUCENE-671) Hashtable based Document

2006-09-14 Thread Doug Cutting (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-671?page=comments#action_12434782 ] Doug Cutting commented on LUCENE-671: - The final declaration is not for performance. It is to keep folks from thinking, if they subclass Document, that instan

[jira] Commented: (LUCENE-671) Hashtable based Document

2006-09-14 Thread Karl Wettin (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-671?page=comments#action_12434791 ] Karl Wettin commented on LUCENE-671: Cutting: > To make Documents fully-subclassible one would need to make their > serialization extensible. I find this a b

[jira] Commented: (LUCENE-671) Hashtable based Document

2006-09-15 Thread Chris (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-671?page=comments#action_12434958 ] Chris commented on LUCENE-671: -- > It is to keep folks from thinking, if they subclass Document, that instances > of their subclass will be returned to them in search

Re: [jira] Commented: (LUCENE-671) Hashtable based Document

2006-09-14 Thread robert engels
Doug is not talking about java serialization, he is talking about general serialization used to store a Document in an Index. On Sep 14, 2006, at 3:00 PM, Karl Wettin (JIRA) wrote: [ http://issues.apache.org/jira/browse/LUCENE-671? page=comments#action_12434791 ] Karl Wettin commented o

Re: [jira] Commented: (LUCENE-671) Hashtable based Document

2006-09-14 Thread karl wettin
On Thu, 2006-09-14 at 15:13 -0500, robert engels wrote: > > Doug is not talking about java serialization, he is talking about > general serialization used to store a Document in an Index. Ahh, I see. That makes much more sense. ---