【发布时间】:2014-01-15 16:53:08
【问题描述】:
我有一个 Neo4j 图形数据库,其中包含多个已升级到 Neo4j 2.0.0 的旧节点索引。我正在利用最新版本中的新功能,因此将远离旧索引并最终删除它们。在为此做准备时,我注意到在我的遗留索引列表中,有一个没有名字。这通过旧的 webadmin UI、通过 index --indexes 命令的 Neo4j shell 和 REST API 列出。对 REST API 的响应的摘录显示
请求::
GET http://localhost:7474/db/data/index/node/
回复:
{
"": {
"template": "http://localhost:7474/db/data/index/node//{key}/{value}",
"provider": "lucene",
"type": "exact"
}
}
如您所见,没有索引标题!因此,我似乎找不到删除它的方法。我试图通过 webadmin 中的“索引”选项卡、neo4j-shell 中的索引命令和 REST API 删除它。有什么想法吗?
【问题讨论】:
标签: neo4j