How to process database writes asynchronously (maybe with a message queue) from Django?

Posted by Continuation on Stack Overflow See other posts from Stack Overflow or by Continuation
Published on 2010-05-08T05:36:23Z Indexed on 2010/05/08 5:38 UTC
Read the original article Hit count: 172

After a user submitted data to my app, I'd like to write to the database asynchronously, possibly through a message queue.

How do I set up such a system? Are there any pluggable Django apps that do such message queue-based database writes?

Also how do i handle errors that happens during the async processing?

Would really appreciate any pointers you can give me. Thank you.

© Stack Overflow or respective owner

Related posts about django

Related posts about asynchronous