Omar-Saad commented on issue #984: URL: https://github.com/apache/age/issues/984#issuecomment-1588789556
You can analyze any query performance using `EXPLAIN` keyword. ``` EXPLAIN MATCH(n) RETURN n ``` This query will return the execution plan, cost, time of your query. Also you can take a look on this tutorial: [Mastering Query Performance Analysis and Query Plan Understanding in Apache AGE](https://dev.to/omarsaad/mastering-query-performance-analysis-and-query-plan-understanding-in-apache-age-56d) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
