🎁 New User? Get 20% off your first purchase with code NEWUSER20 Register Now →
Menu

Categories

Databases Intermediate

What is Materialized View?

A database object that stores the precomputed result of a query, offering faster reads at the cost of periodic refresh.

Unlike regular views that execute their query each time they are accessed, materialized views store query results physically on disk. This dramatically speeds up complex aggregations, joins, and analytical queries. The trade-off is data freshness — materialized views must be refreshed (manually or on schedule) to reflect underlying table changes. PostgreSQL supports REFRESH MATERIALIZED VIEW with a CONCURRENTLY option for zero-downtime refreshes. They are invaluable for dashboards, reports, and read-heavy workloads where slight data staleness is acceptable.

Related Terms

Database Backup
The process of creating copies of database data to protect against data loss from failures, corruption, or human error.
Graph Database
A database that uses graph structures with nodes, edges, and properties to store and query highly connected data.
Connection Pool
A cache of database connections that can be reused, avoiding the overhead of creating new connections for each request.
Foreign Key
A column that creates a link between two tables by referencing the primary key of another table.
Redis
An open-source, in-memory data store used as a database, cache, message broker, and queue with sub-millisecond response times.
NoSQL
A category of databases that store data in non-tabular formats, optimized for specific data models and access patterns.
View All Databases Terms →