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
Many user scenarios need to optimize the performance of statements containing the limit clause, and the cost of pattern extension is often the key point. The optimizer can do some limit push down to improve these performance issues.
For example:
MATCH (v)-[e]->(n) WITH v, n LIMIT 8 RETURN v.prop
Current plan: ...->Traverse->AppendVertices->Limit->Project->...
Optimized plan: ...->Traverse(limit=8)->Limit->AppendVertices->Project->...
The text was updated successfully, but these errors were encountered:
Many user scenarios need to optimize the performance of statements containing the limit clause, and the cost of pattern extension is often the key point. The optimizer can do some limit push down to improve these performance issues.
For example:
Current plan: ...->Traverse->AppendVertices->Limit->Project->...
Optimized plan: ...->Traverse(limit=8)->Limit->AppendVertices->Project->...
The text was updated successfully, but these errors were encountered: