Accessing embedded Solr instance over 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?
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 ?
精彩评论