2

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.

Ahsan Iqbal
  • 1,422
  • 5
  • 20
  • 39

1 Answers1

4

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
  • 98,863
  • 23
  • 192
  • 275
  • +1 for the contributor appeal. Actually i will have a look inside your SolrNet (http://code.google.com/p/solrnet/) project. – cuh Oct 11 '10 at 14:04