通过 HTTP 访问嵌入式 Solr 实例
我正在 Web 应用程序中运行嵌入式 Solr 实例。提供对 Solr 实例的直接(或通过 web 应用程序代理)HTTP 访问的最佳方式是什么?
I'm running an embedded Solr instance inside a webapp. What is the best way to provide direct (or proxied via the webapp) HTTP access to the Solr instance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法通过 http 直接访问嵌入式 solr。
您需要通过 Web 应用程序将查询路由到嵌入式 Solr,该应用程序将在 solr 实例上查询并返回结果。
不建议永远使用嵌入式 Solr。如果您托管一个 web 应用程序,为什么不很好地托管 solr 呢?
Direct access through http for the embedded solr is not an option.
you would need to route the queries to Embedded Solr through your web application, which would query on the solr instance an return back the results.
Using Embedded Solr forever is not much recommended. If you hosting a webapp why not very well host solr as well ?