PostgreSQL Operations Comprehensive PostgreSQL skill covering schema design through production operations. Quick Connection Index Type Selection Quick Index Reference | Index | Best For | Size | Write Cost | |-------|----------|------|------------| | B-tree | Equality, range, sort | Medium | Low | | GIN | Arrays, JSONB, FTS, trigrams | Large | High | | GiST | Geometry, ranges, FTS | Medium | Medium | | BRIN | Correlated data (timestamps) | Tiny | Very low | | Hash | Exact equality only | Medium | Low | Deep dive : Load for composite, partial, expression, and covering index strategies. EXPLAIN…