Reputation: 2337
I need to integrate solr in my existing java application.
What are the way to use solr in existing java application?
Do we need HttpServer for embedding solr?
Will embedding solr has any performance issues?
Upvotes: 1
Views: 1221
Reputation: 18864
Solr is already a complete search server. The best way to integrate solr in your Java application is by using http resquests to an independent solr server. There are various possibilities how to do it. One is to use SolrJ.
http://wiki.apache.org/solr/Solrj
Upvotes: 1