我需要使用python和mysql以編程方式執行完全導入或增量導入。我知道在java中的過程。我們能做到這一點的方式如下:如何使用Python配置和運行MySQL中的Solr完整數據導入?
CommonsHttpSolrServer server = new CommonsHttpSolrServer("http://localhost:8983/solr");
ModifiableSolrParams params = new ModifiableSolrParams();
params.set("command", "full-import");
QueryRequest request = new QueryRequest(params);
request.setPath("/dataimport");
server.request(request);
我想實現它的蟒蛇。你可以在python或任何支持這個的solr python api中推薦等效的代碼嗎?
我知道這些方法。我只是想知道是否有任何類似solrJ的python api for solr 6.3。我說過曬太陽的工作,但是對於版本grtr而言,它不如4.8版本。你能建議一些替代品嗎? –