zlacker

[parent] [thread] 0 comments
1. mrkeen+(OP)[view] [source] 2023-09-25 06:46:29
> My main issue with pretty much all queue approaches is that they don't work across platforms.

What technology stack are you working in which doesn't support postgres?

> but in a microservices world it doesn't work where jobs can span multiple systems

The point of the queue system is to be able to span said microservices. You can have an OCaml service picking up from one queue, processing, then writing into another queue. That queue could then be processed by a TypeScript service.

[go to top]