Search code examples
lucenesolrlucene.netsolrnet

How do I get solr term frequency?


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.


Solution

  • 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.