I need to be able to return results using termDocs and Term's. I am not returning any results when I use standard analyser, any ideas on other analysers avaliable to perform all same operations as standard analyser and return results using terms like (example term- #define):
analyser = new StandardAnalyser(Version.LUCENE_30);
reader = IndexReader.open(FSDirectory.open(IndexDir), true);
TermDocs td = reader.termDocs();
QueryParser parserContents = new QueryParser(Version.LUCENE_30,field,analyser);
query = parserContents.parse(searchTerm);
docs = search.search(query, 100000);
ScoreDoc[] documents = docs.scoreDocs;
for(ScoreDoc match : documents)
{
td.seek(new Term(field,w));
td.skipTo(match.doc);
hits = td.freq();
}
However I do get results when I am trying to use queryparser, and not termdocs. The hits are always zero in above context for terms like #define(special character #).