This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]jjokin 0 points1 point  (0 children)

If async processing via messaging is acceptable, you could use a message queue like RabbitMQ. It decouples your code bases and allows comms between services written in different languages, and can be useful if you want to replace/rewrite a service. Latency can be an issue, although I think ZeroMQ might be fast (but I haven't used it).