Frame-based and stream-based protocols

前端 未结 1 771
不思量自难忘°
不思量自难忘° 2021-01-06 00:10

I am reading WebSocket specification, it\'s written:

The WebSocket Protocol is designed on the principle that there should be minimal framing (the onl

相关标签:
1条回答
  • 2021-01-06 00:40

    A short overview:

    Frame-Based: If I told you that I'm sending you 8 bytes and I send you 6 bytes, you would wait for the next 2 bytes and than say "this is a message".

    Stream-Based: I send you 6 bytes. I send you 2 bytes. Is it one message? two messages? six messages? How do you know where one message starts and another begins?

    0 讨论(0)
提交回复
热议问题