Hi Dave:
  MoreLikeThis object has two parameters which controls his functionality:
        mlt.setMinTermFreq(minTermFreq.intValue());
        mlt.setMinDocFreq(minDocFreq.intValue());
  By default MinTermFreq is 2, so if your document has no terms with
freq greater than 2 will return a query with no terms which returns 0
hits.
  Try setting it to 1.
  Best regards, Marcelo.
On Mon, Sep 1, 2008 at 10:16 AM, davood <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I enabled the TermVector for  required fields using following piece of code,
> Field titleField = new Field("title", title, Field.Store.NO,
> Field.Index.TOKENIZED, TermVector.YES);
> and then re-indexed it. But again it shows no result.
> I checked the stored documents and they TermVector exists and si correct but
> morelikethis return no result for a given document id.
>
> What am I missing?
>
>
> mark harwood wrote:
>>
>> MoreLikeThis needs to find the terms in your doc. It tries to do this by
>> using TermFreqVectors which are stored in the index if you choose to add
>> them at  index-time. If you haven't done this then it will fall back to
>> reanalysing the content of the document usings an analyser (despite what
>> the javadocs for the setAnalyzer method  say about not needing to set an
>> analyzer when MoreLiking an existing document).
>>
>> So your options are probably to re-index with term vectors turned on or
>> set an appropriate choice of analyzer.
>>
>> Cheers,
>> Mark
>> (only 3 days to go until Tom Roberts is back in the office! )
>>
>
> --
> View this message in context: 
> http://www.nabble.com/Re%3A-MoreLikeThis-return-no-results-tp19230763p19254591.html
> Sent from the Lucene - Java Users mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



-- 
Marcelo F. Ochoa
http://marceloochoa.blogspot.com/
http://marcelo.ochoa.googlepages.com/home
______________
Do you Know DBPrism? Look @ DB Prism's Web Site
http://www.dbprism.com.ar/index.html
More info?
Chapter 17 of the book "Programming the Oracle Database using Java &
Web Services"
http://www.amazon.com/gp/product/1555583296/
Chapter 21 of the book "Professional XML Databases" - Wrox Press
http://www.amazon.com/gp/product/1861003587/
Chapter 8 of the book "Oracle & Open Source" - O'Reilly
http://www.oreilly.com/catalog/oracleopen/

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to