哪些 tinkerpop 图数据库不支持指定 id?
Which tinkerpop graph databases do not support specifying an id?
Many graph vendors do not allow the user to specify an element ID and
in such cases, an exception is thrown.
我认为这是指在创建新顶点或边时仅指定一个 ID,而不是指在查询中对 ID 的整体使用。那么哪些 gremlin 实现可以,哪些不允许在创建顶点或边时指定和 ID?
指定允许分配 ID 的图数据库比不允许分配 ID 的图数据库更容易,因为大多数图数据库不允许您在创建 vertex/edge 时指定 ID。
我只知道有两个允许您指定 id:TinkerGraph 和 elastic-gremlin。其余的不支持。
您始终可以通过调用 Graph
实例上的 features()
方法来检查图表支持的内容:
http://tinkerpop.incubator.apache.org/docs/3.0.1-incubating/#_features
Many graph vendors do not allow the user to specify an element ID and in such cases, an exception is thrown.
我认为这是指在创建新顶点或边时仅指定一个 ID,而不是指在查询中对 ID 的整体使用。那么哪些 gremlin 实现可以,哪些不允许在创建顶点或边时指定和 ID?
指定允许分配 ID 的图数据库比不允许分配 ID 的图数据库更容易,因为大多数图数据库不允许您在创建 vertex/edge 时指定 ID。
我只知道有两个允许您指定 id:TinkerGraph 和 elastic-gremlin。其余的不支持。
您始终可以通过调用 Graph
实例上的 features()
方法来检查图表支持的内容:
http://tinkerpop.incubator.apache.org/docs/3.0.1-incubating/#_features