We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edaf105 commit f643f5fCopy full SHA for f643f5f
1 file changed
tools/vcli/bw/benchmark/benchmark.go
@@ -47,6 +47,17 @@ a tree or a random graph generator.`,
47
48
// runAll executes all the canned benchmarks and prints out the stats.
49
func runAll(ctx context.Context, st storage.Store) int {
50
+ // - Add non existing triples. (done)
51
+ // - Add triples that already exist. (todo)
52
+ // - Remove non existing triples. (todo)
53
+ // - Remove existing triples. (todo)
54
+ // - BQL tree walking from root. (todo)
55
+ // - BQL random graph hopping. (todo)
56
+ // - BQL sorting. (todo)
57
+ // - BQL grouping. (todo)
58
+ // - BQL counting. (todo)
59
+ // - BQL filter existent (todo)
60
+ // - BQL filter non existent (todo)
61
return runAddTriples(ctx, st)
62
}
63
0 commit comments