我已经下载titan-server-0.4.4.zip
并解压缩并运行:
$ bin/titan.sh start
这开始了Cassandra
和Titan + Rexster
。现在,我想为我的应用程序(比如“ggg”)创建一个新图形,我想从 Python 源代码中的 Bulbs 创建它。这是我在 python2.7 控制台中尝试的:
>>> from bulbs.titan import Graph, Config
>>> config = Config('/home/kevin/ggg')
>>> g = Graph(config) # Hoping that this will create all the graph related files
现在,我转到 rexster 网络界面,我只能看到一个名为graph
{"version":"2.4.0","name":"Rexster: A Graph Server","graphs":["graph"],
"queryTime":0.567623,"upTime":"0[d]:05[h]:43[m]:05[s]"}
有什么我做错或遗漏的事情吗?我尝试查看文档,但找不到任何对我有帮助的东西。
谢谢你的时间。