Sending messages between two Python servers

Posted by Will on Stack Overflow See other posts from Stack Overflow or by Will
Published on 2010-04-20T10:50:22Z Indexed on 2010/04/20 10:53 UTC
Read the original article Hit count: 174

Filed under:
|
|
|
|

I have two servers - one Django, the other likely to be written in Python - and one is putting 'tasks' into a database and another is processing these tasks.

They share a database, but I want the processor to react quickly to new tasks rather than polling periodically.

Are there any straightforward ways for two Python servers to talk to one another, or does the task processor have to have web-hooks or something?

It feels there ought to be a blessed way to do this...

© Stack Overflow or respective owner

Related posts about python

Related posts about message-queue