Christ, Django is changing too fast. I recently upgraded from 1.2 to 1.3 and it's still way obsolete.
Django 1.6 beta 1 released
31–40 of 72 posts
Re: Django 1.6 beta 1 released
#32Earlier quoted context omitted.
It's not connection pooling.
Care to explain what it is?
In 1.6, Django will optionally not do this; instead, a setting can specify the maximum amount of time to hold open and keep reusing an existing connection.
This is not connection pooling; that would imply some functionality to actively maintain and allocate connections. This is simply "your process will hold its connection open from one request/response cycle to the next".
Re: Django 1.6 beta 1 released
#33Earlier quoted context omitted.
Care to explain what it is?
Currently, Django closes the database connection at the end of each request/response cycle. In 1.6, Django will optionally not do this; instead, a setting can specify the maximum amount of time to hold open and keep reusing an existing connection. This is not connection pooling; that would imply some functionality to actively maintain and allocate connections. This is simply "your process will hold its connection ope…
In what scenario can this be used?
Re: Django 1.6 beta 1 released
#34This can't be right: 1.5 was just released in February. It takes at least 1 year between Django releases, right? Right!? (He said, sarcastically.) Seriously, it is GREAT to see the framework continue to roll forward.
Re: Django 1.6 beta 1 released
#35Still no update for the homely admin app? Would love to have it use bootstrap (or similar) to offload look and feel to those focused on it. One extra thing to do in every Django app is to change the ugly yellow on cyan title bar. I know it is already possible with apps, but then it means one more thing to fix on upgrade.
Re: Django 1.6 beta 1 released
#36Integrated connection pooling makes this release a no-brainer upgrade on release day.
Re: Django 1.6 beta 1 released
#37Persistent database connections :). Glad to see the objections finally fall by the wayside. Still no update for the homely admin app? Would love to have it use bootstrap (or similar) to offload look and feel to those focused on it. One extra thing to do in every Django app is to change the ugly yellow on cyan title bar. I know it is already possible with apps, but then it means one more thing to fix on upgrade.
Re: Django 1.6 beta 1 released
#38Earlier quoted context omitted.
Unfortunately that's the best we have right now. However, the guy who wrote South (and is a core Django developer) ran a Kickstarter last month to raise funds to write South-like functionality directly into the Django core.
He (Andrew Godwin) also recently gave a talk on the subject, ( http://lanyrd.com/2013/djangocon-europe/schgcz/ ).
Re: Django 1.6 beta 1 released
#39Earlier quoted context omitted.
Currently, Django closes the database connection at the end of each request/response cycle. In 1.6, Django will optionally not do this; instead, a setting can specify the maximum amount of time to hold open and keep reusing an existing connection. This is not connection pooling; that would imply some functionality to actively maintain and allocate connections. This is simply "your process will hold its connection ope…
Thanks for the detailed answer. In what scenario can this be used?
Re: Django 1.6 beta 1 released
#40This can't be right: 1.5 was just released in February. It takes at least 1 year between Django releases, right? Right!? (He said, sarcastically.) Seriously, it is GREAT to see the framework continue to roll forward.
There's probably a lot of stuff that didn't make the 1.5 cut.