how to initialize the client with zk host string when solr is in cloud mode? like `zk1:2181,zk2:2181,zk3:2181/solr` based on the current code we have ``` var client = new SolrNode({ host: '127.0.0.1', port: '8983', core: 'test', protocol: 'http' }); ```