Github user krlohnes commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/838#discussion_r195496700
--- Diff:
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/branch/RepeatStep.java
---
@@ -273,11 +300,40 @@ public RepeatEndStep(final Traversal.Admin traversal)
{
super(traversal);
}
+ final LinkedList<Traverser.Admin<S>> stashedStarts = new
LinkedList<>();
--- End diff --
@spmallette Any thoughts on what might be some decent data/traversals for
the JFRs/microbenchmarks around this?
As far as OLAP goes, what are the expectations there? I haven't made any
code changes to the computer algorithm yet since I'm not terribly familiar with
that side of TinkerPop, so I think things should still be working working as
before. I guess the question here is code changes or documentation changes when
it comes to OLAP?
I'm hopefully going to spend some time this weekend or the next around this.
---