On 1/22/07, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 1/22/07, Istvan Albert <[EMAIL PROTECTED]> wrote: > > There is an easy way to turn on multi-threading for the default server, > > see the diff below: > > Graham and/or anybody else who wants multi-threading in the > development server, can you try this patch and see whether it solves > your problem?
I don't mean to FUD, but introducing threads could be trouble in the runserver. If you're serving multiple requests in response to a single primary view (like dynamic js in response to an html request), if the views aren't thread-safe, stuff will go bad. This isn't an issue if you single-thread in dev and prefork in prod. That said, most of the time, this is good stuff. Perhaps a management option to turn it off? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---
