On 15/02/06, Steven Armstrong <[EMAIL PROTECTED]> wrote:
>
> Is anybody using django models in twisted (or other async) apps?
> Any ideas on how to make the two play together nicely?
>

I'd say they should work reasonably well, you would need to punt the
calls to threads using twisted.internet.threads.deferToThread.

Like all database calls django model calls can potentially block
waiting on data from the database, so that's why you have to push them
into a thread. You just have to be aware of when the models will try
to talk to the database and ensure they operate in a different thread
to the twisted reactor.

cheers,
  Michael

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to