Live data from Hacker News

Going Beyond Django ORM with Postgres

speakerdeck.com

1–10 of 16 posts

Re: Going Beyond Django ORM with Postgres

#5

Original 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 was at the talk, it was great. We use a lot of that at work.

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

#6

Original 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...

Like others, I was at the talk and really enjoyed it. Thanks!

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

#7

Original 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

#9

Original 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 ?

I haven't tried the other pooling managers, but I'm not sure they're going to be able to go toe to toe with pgbouncer alone. Though, I wonder if a combination of the pooling manager and pgbouncer would be worth a shot.

Re: Going Beyond Django ORM with Postgres

#10

Original 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...

Thanks for the talk! I was there; it was pretty awesome.

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.

Post reply on HN