Basically, the number of connections open at the same time. If you write a chat app and 10 people are using it at the same time, that's 10 concurrent connections.
Mar 26, 2019
3
Level 2
What does "concurrent connections" mean?
I was reading about websockets and how to use it in laravel in here: https://murze.be/introducing-laravel-websockets-an-easy-to-use-websocket-server-implemented-in-php
I find it hard to understand what does "concurrent connections" means ( maybe because of my english )..
Can someone explain this to me in a simple way?
Level 67
Yes, basically. Think of it like a group chat with 100 max users. Each thing that gets sent over the connection is a message. I say "hi", that's a message. You respond "hey", that's another message.
Please or to participate in this conversation.