Replies: 2 comments
-
@xulzee Hello there! I'm here to assist you with any bugs, questions, or contributions. Let's tackle this issue together! The cache is not used when querying vertices through an index, such as in the query In contrast, the query To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
-
g.V().hasLable("server") First, retrieve the vertices from the index, and then look up the vertex attributes from the vertex table. The second step should be able to use caching. Because the second step involves random queries, it’s much less efficient than retrieving data from the cache. |
Beta Was this translation helpful? Give feedback.
-
for example :
g.V().hasLable("server")
it will use indexQuery
g.V('1:xx').bothE().dedup()",
it will use CachedGraphTransaction
Beta Was this translation helpful? Give feedback.
All reactions