Going Beyond Django ORM with Postgres
speakerdeck.com
Going Beyond Django ORM with Postgres
1–10 of 16 posts
Re: Going Beyond Django ORM with Postgres
#2Re: Going Beyond Django ORM with Postgres
#3Re: Going Beyond Django ORM with Postgres
#4Re: Going Beyond Django ORM with Postgres
#5Original author here, this was a talk given at PyCon. Videos not live yet, but when it is it should be living here - http://pyvideo.org/video/1734/going-beyond-the-django-orm-li...
I did find a bug with serialization with the djorm-ext-pgarray extension that niwibe made and submitted a pull request with a quick fix
Re: Going Beyond Django ORM with Postgres
#6Original author here, this was a talk given at PyCon. Videos not live yet, but when it is it should be living here - http://pyvideo.org/video/1734/going-beyond-the-django-orm-li...
We've been storing json as a text blob, and now we realize we should do a lot more. Postgres continues to impress, and also Heroku's postgres service is awesome. https://postgres.heroku.com/
Re: Going Beyond Django ORM with Postgres
#7Original author here, this was a talk given at PyCon. Videos not live yet, but when it is it should be living here - http://pyvideo.org/video/1734/going-beyond-the-django-orm-li...
Btw. Do you think those pooling managers are much better than pgbouncer ?
Re: Going Beyond Django ORM with Postgres
#8Original author here, this was a talk given at PyCon. Videos not live yet, but when it is it should be living here - http://pyvideo.org/video/1734/going-beyond-the-django-orm-li...
Re: Going Beyond Django ORM with Postgres
#9Original author here, this was a talk given at PyCon. Videos not live yet, but when it is it should be living here - http://pyvideo.org/video/1734/going-beyond-the-django-orm-li...
Great job. The slides are clear enough but I'll check out the video for the rest. I've come across some of those orm extensions before but not all of those. Btw. Do you think those pooling managers are much better than pgbouncer ?
Re: Going Beyond Django ORM with Postgres
#10Original author here, this was a talk given at PyCon. Videos not live yet, but when it is it should be living here - http://pyvideo.org/video/1734/going-beyond-the-django-orm-li...
One question regarding djorm-ext-pgarray: is there a cleaner way to search inside of the array? The where(SqlExpression) works, but it really feels like a chore.