titan

    1熱度

    1回答

    我希望提取附加到特定列表的所有邊和頂點以及他們關注的人,並將它們直接複製到neo4j或通過創建數據的graphson或kryo文件。 事情與此類似: g.V().has("sublist_id", 14).in('ON').out('FOLLOWS') 我基本上要在一個單獨的數據庫或文件中的每個頂點和邊緣隔離查詢。 我最好的方法是什麼? 我做了以下,但似乎無法導出爲json或kryo只grap

    0熱度

    1回答

    剛剛得到Titan 1.0.0,並且在windows gremlin控制檯中命令歷史記錄不起作用。 我該如何解決?

    0熱度

    1回答

    這裏是沒有管道的代碼片段, map = [:] edges = g.V('type', 'update').inE('createupdate') for(edge in edges) { date_long = edge.since.toLong() incrValInMap(map,date_long) // this function add\increment

    0熱度

    1回答

    嗨,我使用彈性與搜索巨人一起.. 現在我有一個特定類型的頂點上的特定財產AA混合指數: PropertyKey textProp = mgmt.getPropertyKey(EntityProps.text); VertexLabel entityClass = mgmt.getVertexLabel(VertexLabels.Entity); mgmt.buildIndex("EntityT

    0熱度

    2回答

    我想檢查是否頂點創建一個新的或更新現有的人之前存在: x = g.V().has('name','xyz').hasNext() // /search 1 if (x != true){ g.V().addVertex('name', 'xyz') } g.V().has('name','xyz').property('x','1') // search 2 的例子有2個搜索

    1熱度

    1回答

    一切運行良好,直到我的應用服務器關閉後,我無法連接到TitanDB。 我的連接代碼: try { titanGraph = TitanFactory.build() .set("storage.backend", "cassandra") .set("storage.hostname", titanHostname) .set("g

    0熱度

    1回答

    我正在嘗試使用Gremlin控制檯3.0.0訪問遠程Gremlin服務器,版本號爲3.0.0。我使用的序列化程序是GraphSONMessageSerializerV1d0。 當我運行它,我得到一個錯誤信息: \,,,/ (o o) -----oOOo-(3)-oOOo----- plugin activated: tinkerpop.server plugin activa

    1熱度

    1回答

    我安裝了titan-cassandra-0.4.4,我可以完美地運行cassandra和gremlin(本地節點)。 我想在Java中測試一個算法,所以我需要將Java連接到泰坦。 我POM是: <dependency> <groupId>com.thinkaurelius.titan</groupId> <artifactId>titan-core</artifactId

    0熱度

    1回答

    我試圖讓DynamoDB本地後端運行Titan。我已經按照從github密切步驟,但不能得到精怪連接: ...[truncated previous commands. Identical to those in github link] gremlin> g = TitanFactory.open(conf) Could not instantiate implementation: com

    1熱度

    3回答

    什麼是最好最好的方式來查詢泰坦的集合的頂點的集合的ID? 假設我有一些UUID作爲屬性的節點,我想通過一個ID集合來獲得這些頂點 - 查詢的最佳方法是什麼? 我可以遍歷的標識集合並獲得所需的頂點一一 - 頂點的頂點與此API(在這個例子中,用戶id是在ID集合我的循環對象): for(String userId: usersList) { tg.getVertices("UUID",