- Query Optimization:
- Analyze Query with
analyze
: Collect statistics on tables and columns. - Using
explain
: Shows the execution plan of SQL statement. - Using
vacuum
: Garbage collection to reclaim unused hard disk space.
- Analyze Query with
- Locking System (table, row)
- Indexes (btree, hash, GIN, GIST, BRW)
- Normalization & De-normalization
- Clustering
- Replication
- Table inheritance
- Constraint execution
- SQL constructs:
- Common Table Expression
- Window Functions
- Recursive Queries
- Unlogged Tables
- Temporary Tables
- Materialized Views
- Using
distinct
with consideration - Using joins with consideration
- Vertical Scale
- Database Caching
- Sharding
- Partitioning + Trigram Extension + GIN
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)