apache solr delete-copy-field

时间:2015-11-12 19:50:44

标签: solr schema

我创建了一个复制字段。但现在我想删除它。索尔正在抛出一个错误,即。

{
  "responseHeader":{
    "status":0,
    "QTime":0},
  "errors":[{
      "delete-copy-field":{
        "source":"*assignees",
        "dest":"all_assignees"},
      "errorMessages":["No such operation : delete-copy-field"]}]}

我使用的是solr-5-0-0。

我使用命令:

curl -X POST -H 'Content-type:application/json' --data-binary '{
  "delete-copy-field":{ "source":"*assignees", "dest":"all_assignees" }
}' http://localhost:8983/solr/<<core name>>/schema

存在复制字段。我使用这个命令来解决它:

curl -X GET http://localhost:8983/solr/patentCore/schema/copyfields

我看过solr的官方文件。我正在做与文件中提到的完全相同的事情。

请说明可能出现的问题。

1 个答案:

答案 0 :(得分:0)

此功能已在Solr 5.1.0中添加,因此您需要升级Solr版本。