takezoe / solr-scala-client

Solr Client for Scala
Apache License 2.0
91 stars 43 forks source link

Does this work with Solr cloud? #29

Open michaeloa opened 9 years ago

michaeloa commented 9 years ago

Quick question (I hope). There's no CloudSolrClient, so my guess is no, but just checking.

takezoe commented 9 years ago

Hmm... I've never used SolrCloud. What is the difference between Solr and SolrCloud API?

michaeloa commented 9 years ago

Thanks for the answer.

I'm no expert on either, but AFAIK writing is a bit more complicated. In terms of reading it's primarily that one uses the CloudSolrClient instead of the SolrClient (the former should more or less transparently handle the cloud management).

We're using Solr now, but need to move to multiple servers for redundancy and load distribution.

takezoe commented 9 years ago

We are using Elasticsearch for full-text search instead of Solr now. It's very powerful and easy to make cluster. We are focusing it, so we are not active for solr-scala-client.

We are also providing the http based Elasticsearch client for Scala. Check it if you get a chance to move to Elasticsearch. https://github.com/bizreach/elastic-scala-httpclient

michaeloa commented 9 years ago

Probably not, but thanks for the recommendation.