Performance Benchmarks
Real-time runs with query plan drill-downs.
Benchmarks Run
9
Live execution snapshot
Success Rate
100%
Completed without errors
Average Duration
32ms
Across all tests
Duration Snapshot
Relative to longest testLatency Trend
Sequence of benchmark runsFastSlow
Uses interface projection - only fetches required columns
Duration 18ms
Records100
Status OK
Fetches complete entities - more data transferred
Duration 55ms
Records100
Status OK
Uses @EntityGraph for eager loading - prevents N+1 queries
Duration 19ms
Records1
Status OK
Date range query - PostgreSQL skips irrelevant monthly partitions
Duration 24ms
Records100
Status OK
No date filter - may scan multiple partitions
Duration 128ms
Records100
Status OK
Pre-computed aggregations - instant response
Duration 1ms
Records1
Status OK
Computed from base tables - multiple COUNT queries
Duration 2ms
Records1
Status OK
Uses pg_class.reltuples - O(1) complexity
Duration 3ms
Records-1
Status OK
Uses COUNT(*) - scans all partitions
Duration 42ms
Records500,000
Status OK