profile-query-runtime-behavior

star 21

Use GRAPH.PROFILE to see per-operator runtime statistics and record counts for queries

FalkorDB By FalkorDB schedule Updated 2/4/2026

name: Profile query runtime behavior description: Use GRAPH.PROFILE to see per-operator runtime statistics and record counts for queries

Profile query runtime behavior

Use GRAPH.PROFILE to see per-operator runtime statistics and record counts.

Usage

Use GRAPH.PROFILE to execute a query and receive detailed runtime metrics for each operation.

Example

redis-cli GRAPH.PROFILE social "MATCH (u:User)-[:FRIENDS_WITH]->(f)
RETURN f.name ORDER BY f.name LIMIT 10"

Notes

  • GRAPH.PROFILE executes the query and returns detailed runtime information
  • Shows actual records processed and time taken per operator
  • More detailed than GRAPH.EXPLAIN as it includes actual execution metrics
  • Useful for identifying performance bottlenecks in complex queries
  • Helps understand which operations are most expensive
Install via CLI
npx skills add https://github.com/FalkorDB/skills --skill profile-query-runtime-behavior
Repository Details
star Stars 21
call_split Forks 2
navigation Branch main
article Path SKILL.md
More from Creator