Marko A. Rodriguez

Results 9 issues of Marko A. Rodriguez

http://tinkerpop.apache.org/docs/current/reference/#gremlin-variants http://tinkerpop.apache.org/docs/current/tutorials/gremlin-language-variants/ http://tinkerpop.apache.org/gremlin.html (see host language embedding) http://tinkerpop.apache.org/providers.html (see query language providers)

It took me a long time to realize to do this: ``` @gen.coroutine def submit(gremlinServerURI, traversalString): response = yield submit(gremlinServerURI, traversalString) while True: result = yield response.read() if result is...

https://github.com/dkuppitz/sparql-gremlin

I don't know if this will break the SPARQL specification, but it would be nice to be able to do: ``` SELECT ?x WHERE { 1 e:knows ?x } ```...

https://github.com/dkuppitz/sparql-gremlin/blob/master/src/main/java/com/datastax/sparql/gremlin/plugin/SparqlRemoteAcceptor.java#L49-L53 Currently, it looks like SPARQL-Gremlin only works for OLTP.

Generating Gremlin bytecode is much easier (and less error prone) than doing direct `traversal.addStep()` calls. Moreover, the serialization and ultimate translation to a `Traversal` is handled by GremlinServer (or remote...

Are there plans to support Apache TinkerPop (http://tinkerpop.apache.org)? If you do, you get Gremlin OLTP and OLAP for free. For your specific optimizations (fast breadth-first search), you could write a...

enhancement

I noticed this in the documentation. ``` graph.search("hell*", Match.ANY).count() ``` If a `P`-predicate is created for `Match.ANY` (and the others) then, when the `TraversalStrategy` that folds `has()`-steps into `BlazeGraphStep`, it...

In my situation, I have 2 Tesla P40s and their temperature isn't necessarily correlated with the CPU temps. As such, the server shuts down after heavy GPU usage with ipmi-fan-control....