使用 SolrJ 更新托管同义词
Update managed synonyms using SolrJ
我可以使用 REST 调用更新同义词列表
curl -X POST -H 'Content-type:application/json' --data-binary '["angry","upset"]' "http://localhost:8983/solr/articles/schema/analysis/synonyms/english"
如何使用 SolrJ 发送相同的请求?
请尝试如下操作。
SolrClient solrClient = new HttpSolrClient("http://localhost:8983/solr/my_collection");
ContentStreamBase.StringStream contentStream = new ContentStreamBase.StringStream(jsonBody);
contentStream.setContentType(JSON_CONTENT_TYPE);
ContentStreamUpdateRequest req = new ContentStreamUpdateRequest(updatePath);
req.addContentStream(contentStream);
return solrClient.request(req);
注意:好的做法是将 solrClient 对象发送到方法。
我可以使用 REST 调用更新同义词列表
curl -X POST -H 'Content-type:application/json' --data-binary '["angry","upset"]' "http://localhost:8983/solr/articles/schema/analysis/synonyms/english"
如何使用 SolrJ 发送相同的请求?
请尝试如下操作。
SolrClient solrClient = new HttpSolrClient("http://localhost:8983/solr/my_collection");
ContentStreamBase.StringStream contentStream = new ContentStreamBase.StringStream(jsonBody);
contentStream.setContentType(JSON_CONTENT_TYPE);
ContentStreamUpdateRequest req = new ContentStreamUpdateRequest(updatePath);
req.addContentStream(contentStream);
return solrClient.request(req);
注意:好的做法是将 solrClient 对象发送到方法。