【发布时间】:2016-08-31 02:54:54
【问题描述】:
我想知道在google chrome上是否可以修改这个参数,默认是1000。
谢谢。
埃洛伊
【问题讨论】:
-
默认真的是1000吗?来源?
标签: google-chrome server-push http2
我想知道在google chrome上是否可以修改这个参数,默认是1000。
谢谢。
埃洛伊
【问题讨论】:
标签: google-chrome server-push http2
我对 SPDY 一点也不熟悉,但我搜索了一下,在 Chromium 项目中发现了以下内容:
// Maximum number of concurrent streams we will create, unless the server
// sends a SETTINGS frame with a different value.
const size_t kInitialMaxConcurrentStreams = 100;
// Specifies the maxiumum concurrent streams server could send (via push).
const int kMaxConcurrentPushedStreams = 1000;
值是常数可能意味着它不能改变?这对您有任何帮助吗?
【讨论】: