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.
我知道如何用 python 灯泡清除图形数据数据。我们用
'g.clear()'
但我想从终端清除图表
我有点不清楚您是要求 BASH 命令删除所有图形数据,还是要求 rexster-console 命令清除图形。我猜你的意思是rexster-console:
g.V().remove()
应该做的伎俩。您将遍历所有顶点并删除它们,这也应该删除它们之间的所有边。根据您的数据集有多大,这可能需要很长时间。