如何获取 solr 术语频率?
我有一个问题,如何才能像我们通过以下方法在 lucene 中获得术语频率一样 DocFreq(new Term("字段", "值"));使用 solr/solrnet。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 debugQuery=on 或 TermsComponent。目前 SolrNet 不支持它们,因此您可以解决它,或者实现它们并将它们贡献给项目。
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.