On 11/29/22 08:59, Nagarajan Muthupandian wrote:
Wanted to check if there is any Java API available to query solr locally 
(Including Pagination) without using the Httpclient.

The Java API (known as SolrJ) uses either Apache httpclient or Jetty httpclient, depending on which client object you choose. Solr is designed to use HTTP for access.

As Eric said, you can use EmbeddedSolrServer and have Solr actually running inside your Java software with no HTTP availability.

We do not recommend running the embedded server in production.  As it has no network connectivity of any kind, it has no redundancy or high availability features.

Thanks,
Shawn

Reply via email to