Re: Access indexed terms

2010-05-14 Thread Andrzej Bialecki
On 2010-05-14 11:35, manjula wijewickrema wrote: Hi, Is it possible to put the indexed terms into an array in lucene. For example, imagine I have indexed a single document in Lucene and now I want to acces those terms in the index. Is it possible to retrieve (call) those terms as array

Re: Access indexed terms

2010-05-14 Thread manjula wijewickrema
Hi Andrzej Thanx for the reply. But as you have mentioned, creating arrays for indexed terms seems to be little difficult. Here my intention is to find the term frequencies (of terms) of an indexed document. I can find the term frequency of a particular term (giving as a query) if I specify the

Re: Access indexed terms

2010-05-14 Thread Andrzej Bialecki
On 2010-05-14 14:24, manjula wijewickrema wrote: Hi Andrzej Thanx for the reply. But as you have mentioned, creating arrays for indexed terms seems to be little difficult. Here my intention is to find the term frequencies (of terms) of an indexed document. I can find the term frequency of a

Re: Access indexed terms

2010-05-14 Thread manjula wijewickrema
Dear Andrzej, Thanx for your valuable help. I also noticed this HighFreqTerms approach in the Lucene email archive and try to use it. In order to do that I have downloaded lucene-misc-2.9.1.jar and added org.apache.lucene.misc package into my project. Now I think I have to call this HighFreqTerms