New patch release out with minor fixes in backup scheduling and view refresh, release notes https://github.com/orientechnologies/orientdb/releases/tag/3.2.50
Also if you are into #rdf and #knowledgegraph you have heard of tinker pop gremlin ๐น then the following pipeline might remind you some good souvenir:
ยดยดยด
(let ((g (make-graph gremlin-n gremlin-e 10 12345)))
(display "Graph: ")
(display gremlin-n)
(display " vertices, ")
(display gremlin-e)
(display " edges/vertex, 10 groups")
(newline)
(let ((tri (time
(traverse g
(V)
(as a)
(out)
(as b)
(where (same-group? g a b))
(out)
(as c)
(where (same-group? g a c))
(where (edge? g c a))
(count)))))
(display tri)
(display " triangles")
(newline)))
ยดยดยด
ref: https://github.com/amirouche/seed/blob/seed3/src/src/seed3/benchmarks/gremlin-pipeline.seed3




