An open API service indexing awesome lists of open source software.

https://github.com/jackc/mat-view-strat-pg

Materialized View Strategies Using PostgreSQL
https://github.com/jackc/mat-view-strat-pg

Last synced: about 2 months ago
JSON representation

Materialized View Strategies Using PostgreSQL

Awesome Lists containing this project

README

        

# Materialized View Strategies Using PostgreSQL

This repository contains the test data and code for this blog post: http://hashrocket.com/blog/posts/materialized-view-strategies-using-postgresql

To load test data:

createdb pg_cache_demo
psql -f accounts.sql pg_cache_demo
psql -f transactions.sql pg_cache_demo
psql -f postgresql_view.sql pg_cache_demo
psql -f postgresql_mat_view.sql pg_cache_demo
psql -f eager_mat_view.sql pg_cache_demo
psql -f lazy_mat_view.sql pg_cache_demo