I'm new to Lucene and want to count occurences of a search word in an index. I saw that I should use something like:
IndexReader reader = .......
TermDocs termDoc = reader.TermDocs();
termDoc.Seek(new Term("my_field", mstrSearchFor));
int occurenceCount = termDoc.Freq();
I can't seem to create the IndexReader to start.