Does anybody know
I am C# developer using the Tinker pop nuget package v3.6.2 .I am struggling with a poblem with regex search. actually everytime I run my code it just goes for ever and nothing returns back until I shutdown the the app. Can anybody help me here:
my code is looks like this
var test1 = g.V().Has("names", TextP.Regex("^Majid*"));
my code is looks like this
var test1 = g.V().Has("names", TextP.Regex("^Majid*"));
Solution
Just to summarize here, I think the failure is expected since you are using operators from 3.6.x that Neptune doesn't know how to deal with yet (soon though!). I do find it strange that these traversals dont get an immediate error when it encounters those though. I still would like to know how long you are waiting for the query to return and what exception it is returning with or if it hangs indefinitely (at least past the 2 minute default). I think if it is hanging indefinitely then there might be a but we need to look into somewhere.