Excelente Jesus! muchas gracias por tus videos, me estan ayudando mucho.
@5entience6263 жыл бұрын
Thanks so much dude this was really helpful
@rCr1019904 жыл бұрын
Great! Do you know if ActionCable is an implementation of Sockets? I have an API that have to accept sockets connections, and I'm seriously thinking about implement socket from scratch. Thanks for video
@JesusCastello4 жыл бұрын
No, not sockets. ActionCable uses "WebSockets" which is different from what's presented in this video. A WebSocket is a recent technology which allows you to stablish an open channel between a web browser & a server through the HTTP protocol. This allows for two-way communication, whereas a normal HTTP request only goes one way. Traditional sockets aren't directly related to HTTP or any web technology, they work at a lower level in the network stack. It's what allows you to build servers of any kind, including FTP, SSH, etc.
@rCr1019904 жыл бұрын
@@JesusCastello Thanks, I was confused about this 🙏