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:
- Host: GitHub
- URL: https://github.com/jeffwidman/sqlalchemy-postgresql-materialized-views
- Owner: jeffwidman
- License: mit
- Created: 2016-01-08T01:47:51.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-12-24T10:29:32.000Z (over 9 years ago)
- Last Synced: 2025-06-26T18:44:55.540Z (about 1 year ago)
- Language: Python
- Homepage: http://jeffwidman.com/blog/847/
- Size: 8.79 KB
- Stars: 109
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.