IPC or k/v for sharing data between tasks?

What's a good paradigm for IPC? - Inter-process communication - Wikipedia

I have local and remote tasks, some of which are executed sequentially others in parallel.

There's the idea of using some sort of K/V store and use that in a distributed sense also; or even adapting PostgreSQL—which I use elsewhere in the stack—but not sure the overhead tradeoffs for each approach…

Thanks

That's a big question. it all depends on what it is you are doing. What requirements you have.

For example, we have a lot of IPC going on, on the same machine and on distributed machines. It's mostly done by a publish/subscribe model using the NATS https://nats.io/

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.