gpt4 book ai didi

graph - 如何在 Gremlin 中选择随机顶点

转载 作者:行者123 更新时间:2023-12-04 16:31:32 29 4
gpt4 key购买 nike

我仍处于图表和 gremlin 的早期阶段。

是否可以在 Gremlin 中随机选择图的顶点?

考虑以下获取用户 friend 拥有的汽车的管道:

u.out('Friend')[0..9].out('Drives').map()

但是这段代码每次只针对前 10 个 friend 执行。如何有效地随机选择?

感谢您的宝贵时间:)

最佳答案

在 Gremlin 2.x 中你可以使用 random步骤如下:

g.v(1).out.random()

或者在 3.x 中 random 变成了 coin :

如:

g.V(1).out.coin()

在 3.x 中,您还可以查看 sampleorder(shuffle) 3.x 中的步骤。

关于graph - 如何在 Gremlin 中选择随机顶点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28720735/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com