[
https://issues.apache.org/jira/browse/TINKERPOP-1349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15353648#comment-15353648
]
Marko A. Rodriguez commented on TINKERPOP-1349:
-----------------------------------------------
Bulking is one of the best things about Gremlin and what allows OLAP to scale.
Every {{Traverser}} has a {{bulk()}}. When two traversers are {{equal()}} (same
place in the graph and in the traversal), then they become one traverser with a
bulk being the sum of their respective bulks. The article on Gremlin discusses
bulking at length -- http://arxiv.org/abs/1508.03843
> RepeatUnrollStrategy should unroll loops while maintaining equivalent
> semantics.
> --------------------------------------------------------------------------------
>
> Key: TINKERPOP-1349
> URL: https://issues.apache.org/jira/browse/TINKERPOP-1349
> Project: TinkerPop
> Issue Type: Improvement
> Components: process
> Affects Versions: 3.2.0-incubating
> Reporter: Marko A. Rodriguez
> Assignee: Marko A. Rodriguez
> Fix For: 3.2.0-incubating
>
>
> Create {{RepeatUnrollStrategy}} that will unroll patterns such as:
> {code}
> repeat(out()).times(3)
> // ->
> out().barrier().out().barrier().out().barrier()
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)