如何使用scala连接solr节点?

时间:2016-01-05 16:58:34

标签: java scala solr cassandra solrj

例如: 使用solr HTTP API

 http://localhost:8983/solr/test.route/select?q=*:*&indent=true&shards.info=true&route.partition=nike|2,reebok|2

这里我们使用localhost连接solr节点。

但是同样的CQL查询如何使用localhost:

SELECT * FROM test.route WHERE solr_query='{"q" : "*:*", "route.partition" : ["nike|2","reebok|2"]}'

如何使用scala在solr主机(XX.XX.XX.XX:8983)中应用上述CQL查询?

1 个答案:

答案 0 :(得分:0)

这可能会略有不同,具体取决于您使用的驱动程序,但基本上只是使用驱动程序连接到您的节点/群集,然后运行CQL查询。