Commits
Click on a commit to change the comparison rangeperf: parallelize read and count queries in paginate endpoints
Use asyncio.gather() to run read and count queries concurrently
in flow_runs/paginate and task_runs/paginate endpoints instead
of awaiting them sequentially.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>14 hours ago
by zzstoatzz fix: use separate sessions for concurrent queries
SQLAlchemy async sessions don't support concurrent operations on the
same session. Each query now gets its own session context so they can
execute concurrently without conflicts.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>13 hours ago
by zzstoatzz