观察 solrnet 中创建的查询
我在 MVC3 应用程序中使用 solrnet。现在我遇到了一些错误。为了找到原因,打印出创建的“solr-request-url”将非常有帮助。 是否有可能给出创建的查询/完整的 URL。
我按以下方式创建查询:
var result = solr.Query(...);
非常感谢您的回答!
solr-request-url 的意思是:http://localhost:9983/solr/select/?q=mainquery&fq=status:public&fq={!tag=dt}doctype:pdf...
I'm using solrnet in a MVC3 application. Now I run into some errors. For finding the reason it would be very helpful to print out the created "solr-request-url".
is there a possibility to give out the created query/the full URL.
I create my Query on following way:
var result = solr.Query(...);
thanks a lot for your answers!
solr-request-url means: http://localhost:9983/solr/select/?q=mainquery&fq=status:public&fq={!tag=dt}doctype:pdf...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,设置一个 ISolrConnection 装饰器。请参阅示例中的 LoggingConnection
应用程序供参考。
Yes, set up a ISolrConnection decorator. See LoggingConnection in the sample
app for reference.
您还可以在 Solr 日志中查看 URL(以及异常堆栈跟踪,如果有)。
You can also see the URL (and the exception stack trace, if any) in the Solr log.