Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Neo4j 的新手——昨天才开始玩。我有一个问题 - 这个语句是原子操作吗?
start n = node(68362), n1 = node(68363) match n-[r]->n1 delete r;
我相信您的意思是 neo4j 在执行此删除语句时是否锁定任何数据。答案是否定的。
是的。如果您没有明确启动事务,Neo4j Server 将启动一个并执行此语句并完成事务。