我正在编写一个非常新的应用程序,使用已经整合的数据库。 数据库中已存在一个索引,用于:身份(uuid),但恕我直言,不应该是一个问题
我收到以下错误:
在2014-10-02 03:32:01 +0200开始获取127.0.0.1的“/” 由StaticPagesController#home作为HTML处理 在74毫秒内完成了500内部服务器错误
Neo4j :: Server :: CypherResponse :: ResponseError(已编入索引:身份(uuid)。): app / models / identity.rb:1:在''
class Identity < CommonBaseClass
end
class CommonBaseClass
include Neo4j::ActiveNode
property :id
property :created_at, type: DateTime
property :updated_at, type: DateTime
# property :uuid
property :name
property :description
end
答案 0 :(得分:3)
如果您有手动索引,请将其删除。我认为neo4j.rb想要创建一个与手册(可能不是唯一的)索引冲突的约束。