Github user okram commented on the pull request: https://github.com/apache/incubator-tinkerpop/pull/278#issuecomment-201910150 You can see how computer-only strategies don't show up in OLTP. ``` gremlin> g = TinkerFactory.createModern().traversal() ==>graphtraversalsource[tinkergraph[vertices:6 edges:6], standard] gremlin> g.V().explain() ==>Traversal Explanation =============================================================== Original Traversal [GraphStep(vertex,[])] ConnectiveStrategy [D] [GraphStep(vertex,[])] IdentityRemovalStrategy [O] [GraphStep(vertex,[])] IncidentToAdjacentStrategy [O] [GraphStep(vertex,[])] AdjacentToIncidentStrategy [O] [GraphStep(vertex,[])] FilterRankingStrategy [O] [GraphStep(vertex,[])] RangeByIsCountStrategy [O] [GraphStep(vertex,[])] TinkerGraphStepStrategy [P] [TinkerGraphStep(vertex,[])] ProfileStrategy [F] [TinkerGraphStep(vertex,[])] StandardVerificationStrategy [V] [TinkerGraphStep(vertex,[])] Final Traversal [TinkerGraphStep(vertex,[])] gremlin> g = g.withComputer() ==>graphtraversalsource[tinkergraph[vertices:6 edges:6], graphcomputer] gremlin> g.V().explain() ==>Traversal Explanation =========================================================================================================== Original Traversal [GraphStep(vertex,[])] ConnectiveStrategy [D] [GraphStep(vertex,[])] VertexProgramStrategy [D] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] OrderLimitStrategy [O] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] IdentityRemovalStrategy [O] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] MatchPredicateStrategy [O] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] IncidentToAdjacentStrategy [O] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] AdjacentToIncidentStrategy [O] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] FilterRankingStrategy [O] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] RangeByIsCountStrategy [O] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] TinkerGraphStepStrategy [P] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] ProfileStrategy [F] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] ComputerVerificationStrategy [V] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] StandardVerificationStrategy [V] [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] Final Traversal [TraversalVertexProgramStep([GraphStep(vertex,[])]), ComputerResultStep] gremlin> ```
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---