hi,
will this work for a PhraseQuery and with slop>1?
thank you

--

--------- Original Message ---------

DATE: Fri, 31 Jan 2003 09:12:05
From: Kelvin Tan <[EMAIL PROTECTED]>
To: Lucene Developers List <[EMAIL PROTECTED]>
Cc: 

>Yep. Here's some sample code for those who aren't sure how to use Term, 
>TermDocs...
>
>        IndexReader reader = IndexReader.open("c:/index");
>        String value = "foobar";
>        Term t = new Term(field, value);
>        TermDocs termDocs = reader.termDocs(t);
>        try
>        {
>            while (termDocs.next())
>            {
>                int docNumber = termDocs.doc();
>                Document doc = reader.document(docNumber);
>                System.out.println("Document:" + doc + " has " + 
>termDocs.freq() + " occurences of " + value);
>            }
>        }
>        finally
>        {
>            if (termDocs != null) termDocs.close();
>        }
>
>HTH
>
>Regards,
>Kelvin
>
>--------
>The book giving manifesto     - http://how.to/sharethisbook
>
>
>On Thu, 30 Jan 2003 05:56:55 -0800 (PST), Otis Gospodnetic said:
>>Would this be the correct answer?
>>http://www.mail-archive.com/lucene-
>>[EMAIL PROTECTED]/msg01738.html
>>
>>I haven't tested it...
>>
>>Otis
>>
>>--- Kelvin Tan <[EMAIL PROTECTED]> wrote:
>>>Maybe this is a good FAQ entry, under Searching?
>>>
>>>
>>http://www.mail-archive.com/lucene-
>>[EMAIL PROTECTED]/msg01735.html
>>>
>>>Regards, Kelvin
>>>
>>>--------
>>>The book giving manifesto     - http://how.to/sharethisbook
>>>
>>>
>>>
>>>
>>>--------------------------------------------------------------------
>>>-
>>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>>For additional commands, e-mail: [EMAIL PROTECTED]
>>>
>>
>>
>>__________________________________________________ Do you Yahoo!?
>>Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
>>http://mailplus.yahoo.com
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>



____________________________________________________________
Get advanced SPAM filtering on Webmail or POP Mail ... Get Lycos Mail!
http://login.mail.lycos.com/r/referral?aid=27005

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

Reply via email to