是否可以从字节码生成 gremlin 脚本?
我正在开发一个 POC,我需要在其中通过 Gremlin API 查询图形 Azure CosmosDB 数据库。
目前,Azure CosmosDB 不支持字节码。Azure 开发团队已经开始着手这方面的工作,但到目前为止还没有发布发布时间表。
当字节码支持普遍可用时,我想准备将来需要最少重构的工作代码。
根据Apache TinkerPop 文档,提交 Gremlin 查询有两种方式:字节码和脚本
# script
client = Client('ws://localhost:8182/gremlin', 'g')
list = client.submit("g.V().has('person','name',name).out('knows')",{'name': 'marko'}).all()
# bytecode
g = traversal().withRemote(DriverRemoteConnection('ws://localhost:8182/gremlin','g'))
list = g.V().has("person","name","marko").out("knows").toList()
“字节码方式”在我看来效率更高(语法检查、IDE 智能感知等),而且我对创建DSL(域特定语言)很感兴趣。
是否可以使用 fluent api 并将其序列化为字符串,方式类似于:
client = Client('ws://localhost:8182/gremlin', 'g')
g = traversal()
q = g.V().has("person","name","marko").out("knows").toString()
list = client.submit(q).all()
我正在使用 python 3.5 和 gremlinpython 3.4.0