solr-scala-client icon indicating copy to clipboard operation
solr-scala-client copied to clipboard

Solr Client for Scala

Results 8 solr-scala-client issues
Sort by recently updated
recently updated
newest added

Thank you for this useful work ! I'm running into a problem when using case class to describe documents. If for one document a text field value is an empty...

org.apache.solr.client.solrj.impl.HttpSolrServer cannot be cast to org.apache.solr.client.solrj.SolrServer val solr_client = new SolrClient("http://localhost:8983/solr/apc2015") dataFrame.collect().foreach(x=>{solr_client.add(Map("serial_number"->x(0), "registration_number"->x(1)))}) solr_client.commit()

I'm interested in using this library with an embedded server. It should be simple enough for me to add it. Does anyone foresee any difficulties with this?

I couldn't find any method to do batch index using async client: https://github.com/takezoe/solr-scala-client/blob/master/src/main/scala/jp/sf/amateras/solr/scala/async/IAsyncSolrClient.scala I would like to add this feature, if it is possible

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

There is not a single tutorial on how to use this client with authentication even though it seems that it is implemented? Would be nice if you could tell me...