DjangoCon-inspired • Advanced PostgreSQL in Django by Christophe Pettus http://www.youtube.com/watch?v=C3bZbA4jaAg • Getting past the Django ORM limitations with Postgres by Craig Kerstiens http://www.youtube.com/watch?v=sXmFK_qsvlo
Case study • pretty slides are pretty, but show me the code • practical example? • yet another online photo gallery… • …built with Django… • …using PostgreSQL goodies!
NoSQL in my SQL?! • HStore is a key value store within Postgres. You can use it similar to how you would use a dictionary within another language […] – Craig Kerstiens, Postgres Guide http://postgresguide.com/sexy/hstore.html • CREATE EXTENSION hstore;
djorm-ext-pgarray • same maintainer as djorm-ext-hstore and other ORM extensions • provides model field and form field • pip install djorm-ext-pgarray • or… • https://github.com/ntucker/djorm-ext-pgarray (better tag string parsing in ArrayFormField)