ApacheSolr删除拷贝字段

ApacheSolr删除拷贝字段,solr,schema,Solr,Schema,我已经创建了一个复制字段。但现在我想删除它。索尔抛出了一个错误 { "responseHeader":{ "status":0, "QTime":0}, "errors":[{ "delete-copy-field":{ "source":"*assignees", "dest":"all_assignees"}, "errorMessages":["No such operation : delete-copy-f

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

{
  "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
我看过solr的官方文件。我正在做与文件中提到的完全相同的事情


请说明问题所在。

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

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