Spring @GraphId 的数据 Neo4j 4 和架构索引
Spring Data Neo4j 4 and schema indexes for @GraphId
根据官方SDN4 documentation - In Spring Data Neo4j 4, index management concerns were removed from the mapping framework entirely
.
那么 @GraphId
的索引呢?它是否也超出了 SDN4 的范围,并且还必须手动创建用 @GraphId
注释的字段的索引?
@GraphId
当前表示您无法控制的 neo4j 内部 ID。
顺便说一句,按 id 查询是 neo4j 中最快的查找。
根据官方SDN4 documentation - In Spring Data Neo4j 4, index management concerns were removed from the mapping framework entirely
.
那么 @GraphId
的索引呢?它是否也超出了 SDN4 的范围,并且还必须手动创建用 @GraphId
注释的字段的索引?
@GraphId
当前表示您无法控制的 neo4j 内部 ID。
顺便说一句,按 id 查询是 neo4j 中最快的查找。