如何将树中的一个节点设置为根节点?假设我的索引从 115 开始,但是当我在 dot net 应用程序中使用 Neo4jClient 连接到数据库时,我将根节点设为 null 吗?是否可以将任何节点设置为根节点?
问问题
458 次
2 回答
1
使用标准 API 是不可能的,但这里有一个小技巧,假设您可以运行一些 Java 代码。它允许您创建一个新的根节点,我认为没有办法更改节点 ID。
public class RootNodeCreator {
/**
* Create the root node. Make sure the database is stopped when running this.
*
* @param pathToDatabase path to the database.
*/
public void createRoot(String pathToDatabase) {
BatchInserter inserter = BatchInserters.inserter(pathToDatabase);
inserter.createNode(0, new HashMap<String, Object>());
inserter.shutdown();
}
}
和一个测试:
@Test
public void verifyRootCreation() throws IOException {
TemporaryFolder temporaryFolder = new TemporaryFolder();
temporaryFolder.create();
GraphDatabaseService database = new GraphDatabaseFactory().newEmbeddedDatabase(temporaryFolder.getRoot().getAbsolutePath());
Transaction tx = database.beginTx();
try {
database.getNodeById(0).delete();
tx.success();
}
finally {
tx.finish();
}
try {
database.getNodeById(0);
fail();
} catch (NotFoundException e) {
//ok
}
database.shutdown();
new RootNodeCreator().createRoot(temporaryFolder.getRoot().getAbsolutePath());
database = new GraphDatabaseFactory().newEmbeddedDatabase(temporaryFolder.getRoot().getAbsolutePath());
assertNotNull(database.getNodeById(0));
}
于 2013-08-25T23:51:15.540 回答
0
这无法通过 REST API 实现,因此 Neo4jClient 无法支持。
于 2013-09-04T01:19:48.690 回答