You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* gh-3359 Reduce number of vertex lookups for edges
Stop inV/outV performing a full vertex lookup
Add new methods for doing this when we want to traverse an Edge
* headers
* tidy and add tests
* javadoc
Describe the bug
g.E()
should map to a single Gaffer OperationChain.Instead it creates
2n + 1
queries, wheren
is the number of edges in the graph.This is causing unacceptable performance for simple queries
The text was updated successfully, but these errors were encountered: