观察 solrnet 中创建的查询

发布于 2024-12-09 15:10:52 字数 339 浏览 1 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你怎么敢 2024-12-16 15:10:52

是的,设置一个 ISolrConnection 装饰器。请参阅示例中的 LoggingConnection
应用程序供参考。

Yes, set up a ISolrConnection decorator. See LoggingConnection in the sample
app for reference.

不如归去 2024-12-16 15:10:52

您还可以在 Solr 日志中查看 URL(以及异常堆栈跟踪,如果有)。

You can also see the URL (and the exception stack trace, if any) in the Solr log.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文