请建议,我如何运行 command=full-import?
SolrServer solrServer = new HttpSolrServer("http://localhost:8080/solr");
然后呢……
谢谢!
最佳答案
看看这个 wiki 页面和那里的拼写检查示例。它使用旧的 CommonsHttpSolrServer
但它与您想要的相似。这段代码应该是你要找的,即使我还没有尝试过:
SolrServer solrServer = new HttpSolrServer("http://localhost:8080/solr");
ModifiableSolrParams params = new ModifiableSolrParams();
params.set("qt", "/dataimport");
params.set("command", "full-import");
QueryResponse response = solrServer.query(params);
关于java - 如何使用 SolrJ 运行完全导入命令,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11796116/