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

https://github.com/jeffwidman/sqlalchemy-postgresql-materialized-views

A SQLAlchemy recipe for managing PostgreSQL Materialized Views:
https://github.com/jeffwidman/sqlalchemy-postgresql-materialized-views

Last synced: 12 months ago
JSON representation

A SQLAlchemy recipe for managing PostgreSQL Materialized Views:

Awesome Lists containing this project

README

          

# A SQLAlchemy recipe for PostgreSQL Materialized Views
A SQLAlchemy recipe for managing PostgreSQL Materialized views that handles:
* Creating
* Dropping
* Indexing
* Refreshing (including concurrent background refreshes)

Accompanying blog post: [http://www.jeffwidman.com/blog/847/using-sqlalchemy-to-create-and-manage-postgresql-materialized-views/](http://www.jeffwidman.com/blog/847/using-sqlalchemy-to-create-and-manage-postgresql-materialized-views/)

Many thanks to [Mike Bayer](http://techspot.zzzeek.org/) for his help
with this.