Last active
April 2, 2019 20:07
-
-
Save spmallette/2baed00ebde6f41cc3b2765f1e458c02 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gremlin> java.util.stream.IntStream.range(0, 10000).iterator() | |
==>0 | |
==>1 | |
==>2 | |
==>3 | |
==>4 | |
... | |
==>348 | |
==>349 | |
==>350 | |
==>351 | |
==>352 | |
Execution interrupted by ctrl+c | |
==>353 | |
gremlin> Thread.sleep(5000) | |
Execution interrupted by ctrl+c | |
sleep interrupted | |
Type ':help' or ':h' for help. | |
Display stack trace? [yN]n | |
gremlin> g = TinkerGraph.open().traversal() | |
==>graphtraversalsource[tinkergraph[vertices:0 edges:0], standard] | |
gremlin> g.addV().as('a').addE('link').to('a') | |
==>e[1][0-link->0] | |
gremlin> g.V().repeat(out('link')) | |
Execution interrupted by ctrl+c | |
org.apache.tinkerpop.gremlin.process.traversal.util.TraversalInterruptedException | |
Type ':help' or ':h' for help. | |
Display stack trace? [yN]n | |
gremlin> :remote connect tinkerpop.server conf/remote.yaml | |
==>Configured localhost/127.0.0.1:8182 | |
gremlin> :> g.addV().as('a').addE('link').to('a') | |
==>e[1][0-link->0] | |
gremlin> :> g.V().repeat(out('link')) | |
Execution interrupted by ctrl+c | |
org.apache.tinkerpop.gremlin.jsr223.console.RemoteException | |
Type ':help' or ':h' for help. | |
Display stack trace? [yN]n | |
gremlin> :remote console | |
==>All scripts will now be sent to Gremlin Server - [localhost/127.0.0.1:8182] - type ':remote console' to return to local mode | |
gremlin> g.V().repeat(out('link')) | |
Execution interrupted by ctrl+c | |
org.apache.tinkerpop.gremlin.jsr223.console.RemoteException | |
Type ':help' or ':h' for help. | |
Display stack trace? [yN]n | |
gremlin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment