Hello everyone,
I have multiple Indexes and open multipsearcher for that, and based on hits
I wants to get docFreq, when the term is single word then it's works fine
but when phrases then its return 0.
my code is ;
Dim iTermFrequency As Integer = objMultiSearcher.DocFreq(New
Lucene.Net.Index.Term("title","Laxmilal" ))
its works fine.
but when
Dim iTermFrequency As Integer = objMultiSearcher.DocFreq(New
Lucene.Net.Index.Term("title","Laxmilal Menaria" )) then its return 0, but
the title have morethan 10 entries of "Laxmilal Menaria"..
so pls suggest me, missing somthing or not ?
Thanks in advance
-LM