书栈网 · BookStack 本次搜索耗时 0.012 秒,为您找到 468 个相关结果.
  • Transport and application

    450 2019-12-09 《HTTP/3 explained》
    Transport and application level Transport and application level The IETF QUIC protocol is a transport protocol, on top of which otherapplication protocols can be used. The init...
  • 快速握手

    1443 2019-12-09 《HTTP/3 详解》
    快速握手 早期数据(Early data) 快速握手 QUIC提供0-RTT和1-RTT的连接建立,这意味着QUIC在最佳情况下不需要任何的额外往返时间便可建立新连接。其中更快的0-RTT仅在两个主机之间建立过连接且缓存了该连接的“秘密”(secret)时可以使用。 早期数据(Early data) QUIC允许客户端在0-RTT的情况下直接...
  • 1.2. QuickStart

    883 2018-06-24 《RPCX英文文档》
    QuickStart Installation First, you should install rpcx: go get - u - v github . com / smallnest / rpcx /... It only install the basic features of rpcx. If you want to...
  • Spin Bit

    702 2019-12-09 《HTTP/3 explained》
    Spin Bit Spinning a bit Spin Bit One of the perhaps longest design discussions within the QUIC working groupthat has been the subject of several hundred mails and hours of dis...
  • 用户空间实现

    1588 2019-12-09 《HTTP/3 详解》
    用户空间实现 众多的实现 用户空间实现 在用户空间中实现一个传输层协议有助于协议的快速迭代,协议的演进更为容易,不需要客户端和服务器更新其操作系统内核才能部署新的版本。 QUIC本身没有固有的东西阻碍未来在操作系统内核中实现和提供QUIC协议。 众多的实现 在用户空间中实现一个新的传输层协议时,一个显而易见的效果是我们会看到很多独立的实现。...
  • 通信安全及优化

    通信安全及优化 加密与压缩 TCP 多路复用 连接池 支持 KCP 协议 支持 QUIC 协议 通信安全及优化 加密与压缩 每一个代理都可以选择是否启用加密和压缩的功能。 加密算法采用 aes-128-cfb,压缩算法采用 snappy。 在每一个代理的配置中使用如下参数指定: # frpc.ini [ ssh ] type ...
  • HTTPS:// URLs

    612 2019-12-09 《HTTP/3 explained》
    HTTPS:// URLs Initial connection HTTPS:// URLs HTTP/3 will be performed using HTTPS:// URLs. The world is full of theseURLs and it has been deemed impractical and downright u...
  • 有序交付

    1352 2019-12-09 《HTTP/3 详解》
    ‎有序交付 ‎有序交付 QUIC的单个数据流可以保证有序交付,但多个数据流之间可能乱序。这意味着单个数据流的传输是按序的,但是多个数据流中接收方收到的顺序可能与发送方的发送顺序不同! 举个例子:服务器传送流A和B到客户端。流A先启动,然后是流B。在QUIC中,丢包只会影响该包所处的流。如果流A发生了一次丢包,而流B没有,流B将继续传输直到结束,而流...
  • Connection pooling

    Connection pooling HTTP/1.1 HTTP/2 HTTP/3 Automatic protocol selection Number of connection pools Health checking interactions Connection pooling For HTTP traffic, Envoy s...
  • 1.2. QuickStart

    QuickStart Installation Implement Service Implement Server Implement Client Call the service asynchronously QuickStart Installation First, you should install rpcx: go ...