Re: IndexReader#docFreq(Term)

2007-08-30 Thread Michael Busch
Chris Hostetter wrote: > > unless i'm mistaken, docFreq isn't the only method affected by deleted > docs, things like termDocs, termPositions, terms, ... pretty much all of > hte IndexReader methods work that way (even getFieldNames could be > missleading if the only doc with a field of that name

Re: Re: Re: IndexReader#docFreq(Term)

2007-08-30 Thread tom
Tom Roberts is out of the office until 3rd September 2007 and will get back to you on his return. http://www.luxonline.org.uk http://www.lux.org.uk - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: Re: IndexReader#docFreq(Term)

2007-08-30 Thread tom
Tom Roberts is out of the office until 3rd September 2007 and will get back to you on his return. http://www.luxonline.org.uk http://www.lux.org.uk - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: IndexReader#docFreq(Term)

2007-08-30 Thread Chris Hostetter
- /** Returns the number of documents containing the term t. + /** Returns the number of documents, including deleted, containing the term t. there is a note about this in the javadocs for deleteDocument, but i agree it's not entirely clear ... unless i'm mistaken, docFreq isn't the only

IndexReader#docFreq(Term)

2007-08-30 Thread Karl Wettin
I was running in to some problems that turned out to be a non- documented feature. Here is a javadoc suggestion: - /** Returns the number of documents containing the term tcode>. + /** Returns the number of documents, including deleted, containing the term t. * @throws IOException if the