我是 solr 的新手。我不知道如何在不使用 solrj 的情况下在 java 应用程序中使用 solr。我需要做简单的任务,如 crud(插入/更新/删除等)。所以我用谷歌搜索并找出一些有用的代码..但我不知道,它是否会工作。代码是
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost postRequest = new HttpPost("http://solrHost.com:8983/solr/update/json");
StringEntity input = new StringEntity("{\"firstName\":\"Bob\",\"lastName\":\"Williams\"}");
input.setContentType("application/json");
postRequest.setEntity(input);
HttpResponse response = httpClient.execute(postRequest);
如何在多核中插入数据。即一次两个或多个核心