DEV Community

Discussion on: How would you create a web API with streaming input and output (eg stocks monitoring system) without tools like Kafka and Spark?

Collapse
 
felipemsfg profile image
Felipe Marques

Maybe using websocket? Or Redis pubsub feature?

Collapse
 
ksaaskil profile image
Kimmo Sääskilahti

I also thought first of websockets. gRPC is also worth looking into. Or maybe GraphQL streaming, don't know how that works nowadays.

Collapse
 
perigk profile image
Periklis Gkolias

Websockets sounds a great idea. And it is relatively easy to implement a WS client/server.

I have never heard GQL streaming and redis pubsub. Will totally look into

Thank you guys