Dominik Franěk

Results 17 comments of Dominik Franěk

So I tried the indexing... I created a FULLTEXT index in ArangoDB using the field: `name.@value` and then using AQL I was able to use the fulltext index: ``` for...

So I have created a new branch in my fork of this repo: https://github.com/fdominik/arangodb-tinkerpop-provider/commits/feature_PropertiesInsideElements where I published the draft. It is not working yet, it should serve more for the...

Wow, the option 2 is indeed much better. I was worried the same as you are, that we would build still a new structure which would not fit the existing...

Amazing work Horacio. I was taking a look on it. Some things work, but still some bugs could be found. I would be interested if I should create a new...

Regarding your issue of g.V() going to the memory with all the vertices and properties. This is connected to more generic performance issue of how the ArangoDB Tinkerpop implementation now...

So I did a first attempt to implement ProviderTraversalStrategy, being inspired by https://github.com/apache/tinkerpop/blob/master/tinkergraph-gremlin/src/main/java/org/apache/tinkerpop/gremlin/tinkergraph/process/traversal/strategy/optimization/TinkerGraphStepStrategy.java and by https://github.com/JanusGraph/janusgraph/blame/master/janusgraph-core/src/main/java/org/janusgraph/graphdb/tinkerpop/optimize/JanusGraphStepStrategy.java However I haven't fount, where the code to build the Arango query should be...

Just a note, that in #42 (more explained in https://github.com/ArangoDB-Community/arangodb-tinkerpop-provider/pull/42#issuecomment-458319412) there is some checking if Graph exists. If not it creates the graph and creates the collections. And if the...