postgres-perf

Installation
SKILL.md

PostgreSQL Performance

DB 쿼리/스키마 작성 시 성능 최적화 가이드.

우선순위별 핵심 규칙

🔴 CRITICAL: 쿼리 성능

-- ❌ 인덱스 없는 WHERE
SELECT * FROM orders WHERE customer_email = 'user@example.com';

-- ✅ 인덱스 생성
CREATE INDEX idx_orders_email ON orders(customer_email);
Installs
2
Repository
openclaw/skills
GitHub Stars
4.5K
First Seen
Feb 18, 2026
postgres-perf — openclaw/skills