本文介绍了Neo4j-如何从浏览器中删除未使用的属性键?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经删除了我所有的节点和关系(删除所有节点和关系都在neo4j 1.8 中),但我发现在Neo4j浏览器中,删除之前存在的属性密钥"仍然存在.
I've deleted all my nodes and relationships (Delete all nodes and relationships in neo4j 1.8), but I see that in Neo4j Browser the "property keys" that existed before the deletion remain.
请参见下图:
如何使所有属性密钥"也消失,所以我可以得到一个全新的数据库?我知道这个孤立的属性键本身并不会带来问题,但是它们会使浏览器的体验混乱,并且会开始与较新的属性混淆.
How can I make all the "Property Keys" go away too, so I can end up with a fresh new database? I understand this orphan property keys do not pose a problem themselves, but they clutter the browser experience and will start confusing with newer properties.
谢谢!
推荐答案
您应该可以通过以下方式清除所有内容:
You should be able to clear everything out by:
- 停止Neo4j数据库
- 删除所有与
data/graph.db/*
匹配的内容(在graph.db
文件夹中查看) - 再次启动.
- stopping your Neo4j database
- deleting everything matching
data/graph.db/*
(look inside thegraph.db
folder) - starting up again.
这篇关于Neo4j-如何从浏览器中删除未使用的属性键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!