Hello,
I am working on a project in which I have to manage a lot small chat for only 2 users per chat.
My first idea was to use one websocket per user to do the communication between nginx and the browser.
I need to get a spool of websockets for each user so I could send messages between users by selecting the right websocket.
But How could I have a spool of websockets shared among the whole server?
Jérôme