Django 1.6 alpha 1 released
djangoproject.com
Django 1.6 alpha 1 released
1–10 of 36 posts
Re: Django 1.6 alpha 1 released
#2Re: Django 1.6 alpha 1 released
#3Persistent database connections
Django now supports reusing the same database connection for several requests. This avoids the overhead of re-establishing a connection at the beginning of each request. For backwards compatibility, this feature is disabled by default. See Persistent connections for details.
Re: Django 1.6 alpha 1 released
#4This is the most exciting and interesting thing in the release: Persistent database connections Django now supports reusing the same database connection for several requests. This avoids the overhead of re-establishing a connection at the beginning of each request. For backwards compatibility, this feature is disabled by default. See Persistent connections for details.
Absolutely. My expectation is that this alone should dramatically increase app response times for any reasonably DB-dependant application.
Re: Django 1.6 alpha 1 released
#5Good. Keep it coming. For those who are interested further, here are the release notes to see "What’s new in Django 1.6" http://j.mp/13XRnoD
Re: Django 1.6 alpha 1 released
#6This is the most exciting and interesting thing in the release: Persistent database connections Django now supports reusing the same database connection for several requests. This avoids the overhead of re-establishing a connection at the beginning of each request. For backwards compatibility, this feature is disabled by default. See Persistent connections for details.
Re: Django 1.6 alpha 1 released
#7This is the most exciting and interesting thing in the release: Persistent database connections Django now supports reusing the same database connection for several requests. This avoids the overhead of re-establishing a connection at the beginning of each request. For backwards compatibility, this feature is disabled by default. See Persistent connections for details.
Re: Django 1.6 alpha 1 released
#8This is the most exciting and interesting thing in the release: Persistent database connections Django now supports reusing the same database connection for several requests. This avoids the overhead of re-establishing a connection at the beginning of each request. For backwards compatibility, this feature is disabled by default. See Persistent connections for details.
> This is the most exciting and interesting thing in the release: Absolutely. My expectation is that this alone should dramatically increase app response times for any reasonably DB-dependant application.
I also can't wait to have such mode fully supported by the core product.
Re: Django 1.6 alpha 1 released
#9This is the most exciting and interesting thing in the release: Persistent database connections Django now supports reusing the same database connection for several requests. This avoids the overhead of re-establishing a connection at the beginning of each request. For backwards compatibility, this feature is disabled by default. See Persistent connections for details.
Connection pooling? I am surprised to find out that Django doesn't have this feature until now. Is there any specific reason why this wasn't implemented much earlier? Old tech like plain asp had this more than a decade ago.