Confirmed users
72
edits
(Created page with "= Document Overview = {| |'''Feature/Product:''' || SPDY persistent CWND setting |- |'''Projected Feature Freeze Date:''' || <section begin='eta' />(tbd)<section end='eta' /> |...") |
No edit summary |
||
| Line 30: | Line 30: | ||
In this section, the product's architecture is described. Any individual components or actors are identified, their "knowledge" or what data they store is identified, and data flow between components and external entities is described. | In this section, the product's architecture is described. Any individual components or actors are identified, their "knowledge" or what data they store is identified, and data flow between components and external entities is described. | ||
'''The main objective of this feature/product is:''' | '''The main objective of this feature/product is:''' network performance for the spdy protocol using the persistent CWND settings attribute of the protocol. | ||
'''Design Documents''': | '''Design Documents''': | ||
https://bugzilla.mozilla.org/show_bug.cgi?id=822745 | |||
http://dev.chromium.org/spdy/spdy-protocol/spdy-protocol-draft3#TOC-2.6.4-SETTINGS | |||
== Components == | == Components == | ||
A spdy server sends a value that represents the effective network CWND to the host periodically during the session. The client, upon creating a new session, echoes this value to the server so it can apply it to the new session and garner a performance benefit over TCP slow start. It is essentially a transport layer cookie specific to the protocol. | |||
The value is limited in our implementation to 7 bits and is stored per connection entry. a connection entry is more or less defined by the tuple of {hostname, ssl, private-browsing, anonymous} - so this data is not shared between PB and non PB sessions. | |||
This data is not stored on disk and is not persisted between restarts. | |||
an about:config preference is available to control whether or not the data is stored. | |||
= User Data Risk Minimization = | = User Data Risk Minimization = | ||