All Questions
Tagged with message-queue websockets
8 questions
0
votes
3
answers
2k
views
Backend to client communication: WebSocket or Message Queue?
I have a hobby project, for simplicity imagine a poker game, consisting of a backend (Spring) and a client application (Flutter) where the client can join rooms in which he can take a seat. The client ...
1
vote
3
answers
311
views
Long-polling with message queues in a clustered environment
I have a system design question that I'm looking for some guidance on. I have two different systems that need to have a basic level of communication. This is abstracted via message queues.
For example,...
1
vote
0
answers
419
views
Do we really need a message brocker in WebSocket system?
I'm engineering architecture of a new web based software.
I've never worked on high-scale softwares before and I'm reading a lot about it.
To increase client-side speed and reduce load on servers, and ...
9
votes
1
answer
12k
views
Do I actually need a message broker or are websockets enough?
The website I am building has a real-time messaging component. The backend is built with Flask and I have integrated Flask-SocketIO to handle Websocket connections when users are on the messaging page....
10
votes
2
answers
15k
views
REST or a message queue in a multi-tier heterogeneous system?
I'm designing a REST API for a three-tier system like: Client application -> Front-end API cloud server -> user's home API server (Home).
Home is a home device, and is supposed to maintain connection ...
0
votes
2
answers
1k
views
How can an update message from a rabbitmq broker reach all relevant clients via multiple websocket servers?
Lets say I have multiple websocket servers that maintain many connections to clients to send updates. These websocket servers will be pulling said updates from a rabbitmq broker, and broadcasting them ...
0
votes
1
answer
681
views
A WebSocket API, reply message
I am writing a Web application for copying files between servers.
I decided to write a WebSocket server which will receive and send relevant messages (that is communicate with a browser), start and ...
5
votes
1
answer
6k
views
Is having a bi directional message queue a design smell?
I have an architecture with 1 backend server and multiple frontend servers.
The frontend servers are connected in a bi-directional (web sockets) connection to clients so they can send messages to ...