views:

45

answers:

1

hi All

I have a question that how could somebody get term frequency as we do get in lucene by the following method DocFreq(new Term("Field", "value")); using solr/solrnet.

+3  A: 

Try debugQuery=on or TermsComponent. None of them are currently supported through SolrNet, so you can either work around it, or implement them and contribute them to the project.

Mauricio Scheffer
@Mauricio +1 for the contributor appeal. Actually i will have a look inside your SolrNet (http://code.google.com/p/solrnet/) project.
cuh