在 OrientDB 中加载随机顶点

Loading random Vertex in OrientDB

我需要加载随机顶点或边记录。

有什么方法可以非常快地做到这一点?

查询

select @rid from User skip 300000 limit 1

很慢。

谢谢

试试这个命令

SELECT FROM <target> WHERE @rid > <lower-rid> ... [LIMIT <max-records>]

应该会更快。

更多信息:http://orientdb.com/docs/2.1/Pagination.html#use-the-rid-limit