Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 575 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 575 Bytes

Postgres

  • Avoid multicolumn indexes. Postgres combines multiple indexes efficiently. Optimize later with a compound index if needed.
  • Consider a partial index for queries on booleans.
  • Avoid JSONB columns unless you have a strong reason to store an entire JSON document from an external source.