[首页]
[文章]
[教程]
首页
Web开发
Windows开发
编程语言
数据库技术
移动平台
系统服务
微信
设计
布布扣
其他
数据分析
首页
>
Web开发
> 详细
High Performance Browser Networking
时间:
2014-09-18 22:20:04
阅读:
329
评论:
0
收藏:
0
[点我收藏+]
Table of Contents
Foreword
Preface
About This Book
Conventions Used in This Book
Safari? Books Online
How to Contact Us
Content Updates
May 23, 2014
I. Networking 101
1. Primer on Latency and Bandwidth
Speed Is a Feature
The Many Components of Latency
Speed of Light and Propagation Latency
Last-Mile Latency
Bandwidth in Core Networks
Bandwidth at the Network Edge
Delivering Higher Bandwidth and Lower Latencies
2. Building Blocks of TCP
Three-Way Handshake
Congestion Avoidance and Control
Flow Control
Slow-Start
Congestion Avoidance
Bandwidth-Delay Product
Head-of-Line Blocking
Optimizing for TCP
Tuning Server Configuration
Tuning Application Behavior
Performance Checklist
3. Building Blocks of UDP
Null Protocol Services
UDP and Network Address Translators
Connection-State Timeouts
NAT Traversal
STUN, TURN, and ICE
Optimizing for UDP
4. Transport Layer Security (TLS)
Encryption, Authentication, and Integrity
TLS Handshake
RSA, Diffie-Hellman and Forward Secrecy
Application Layer Protocol Negotiation (ALPN)
Server Name Indication (SNI)
TLS Session Resumption
Session Identifiers
Session Tickets
Chain of Trust and Certificate Authorities
Certificate Revocation
Certificate Revocation List (CRL)
Online Certificate Status Protocol (OCSP)
TLS Record Protocol
Optimizing for TLS
Computational Costs
Early Termination
Session Caching and Stateless Resumption
TLS False Start
TLS Record Size
TLS Compression
Certificate-Chain Length
OCSP Stapling
HTTP Strict Transport Security (HSTS)
Performance Checklist
Testing and Verification
II. Performance of Wireless Networks
5. Introduction to Wireless Networks
Ubiquitous Connectivity
Types of Wireless Networks
Performance Fundamentals of Wireless Networks
Bandwidth
Signal Power
Modulation
Measuring Real-World Wireless Performance
6. WiFi
From Ethernet to a Wireless LAN
WiFi Standards and Features
Measuring and Optimizing WiFi Performance
Packet Loss in WiFi Networks
Optimizing for WiFi Networks
Leverage Unmetered Bandwidth
Adapt to Variable Bandwidth
Adapt to Variable Latency
7. Mobile Networks
Brief History of the G’s
First Data Services with 2G
3GPP and 3GPP2 Partnerships
Evolution of 3G Technologies
IMT-Advanced 4G Requirements
Long Term Evolution (LTE)
HSPA+ is Leading Worldwide 4G Adoption
Building for the Multigeneration Future
Device Features and Capabilities
User Equipment Category
Radio Resource Controller (RRC)
3G, 4G, and WiFi Power Requirements
LTE RRC State Machine
HSPA and HSPA+ (UMTS) RRC State Machine
EV-DO (CDMA) RRC State Machine
Inefficiency of Periodic Transfers
End-to-End Carrier Architecture
Radio Access Network (RAN)
Core Network (CN)
Backhaul Capacity and Latency
Packet Flow in a Mobile Network
Initiating a Request
Inbound Data Flow
Heterogeneous Networks (HetNets)
Real-World 3G, 4G, and WiFi Performance
8. Optimizing for Mobile Networks
Preserve Battery Power
Eliminate Periodic and Inefficient Data Transfers
Eliminate Unnecessary Application Keepalives
Anticipate Network Latency Overhead
Account for RRC State Transitions
Decouple User Interactions from Network Communication
Design for Variable Network Interface Availability
Burst Your Data and Return to Idle
Offload to WiFi Networks
Apply Protocol and Application Best Practices
III. HTTP
9. Brief History of HTTP
HTTP 0.9: The One-Line Protocol
HTTP 1.0: Rapid Growth and Informational RFC
HTTP 1.1: Internet Standard
HTTP 2.0: Improving Transport Performance
10. Primer on Web Performance
Hypertext, Web Pages, and Web Applications
Anatomy of a Modern Web Application
Speed, Performance, and Human Perception
Analyzing the Resource Waterfall
Performance Pillars: Computing, Rendering, Networking
More Bandwidth Doesn’t Matter (Much)
Latency as a Performance Bottleneck
Synthetic and Real-User Performance Measurement
Browser Optimization
11. HTTP 1.X
Benefits of Keepalive Connections
HTTP Pipelining
Using Multiple TCP Connections
Domain Sharding
Measuring and Controlling Protocol Overhead
Concatenation and Spriting
Resource Inlining
12. HTTP 2.0
History and Relationship to SPDY
The Road to HTTP 2.0
Design and Technical Goals
Binary Framing Layer
Streams, Messages, and Frames
Request and Response Multiplexing
Request Prioritization
One Connection Per Origin
Flow Control
Server Push
Header Compression
Efficient HTTP 2.0 Upgrade and Discovery
Brief Introduction to Binary Framing
Initiating a New Stream
Sending Application Data
Analyzing HTTP 2.0 Frame Data Flow
13. Optimizing Application Delivery
Evergreen Performance Best Practices
Cache Resources on the Client
Compress Transferred Data
Eliminate Unnecessary Request Bytes
Parallelize Request and Response Processing
Optimizing for HTTP 1.x
Optimizing for HTTP 2.0
Removing 1.x Optimizations
Dual-Protocol Application Strategies
Translating 1.x to 2.0 and Back
Evaluating Server Quality and Performance
Speaking 2.0 with and without TLS
Load Balancers, Proxies, and Application Servers
IV. Browser APIs and Protocols
14. Primer on Browser Networking
Connection Management and Optimization
Network Security and Sandboxing
Resource and Client State Caching
Application APIs and Protocols
15. XMLHttpRequest
Brief History of XHR
Cross-Origin Resource Sharing (CORS)
Downloading Data with XHR
Uploading Data with XHR
Monitoring Download and Upload Progress
Streaming Data with XHR
Real-Time Notifications and Delivery
Polling with XHR
Long-Polling with XHR
XHR Use Cases and Performance
16. Server-Sent Events (SSE)
EventSource API
Event Stream Protocol
SSE Use Cases and Performance
17. WebSocket
WebSocket API
WS and WSS URL Schemes
Receiving Text and Binary Data
Sending Text and Binary Data
Subprotocol Negotiation
WebSocket Protocol
Binary Framing Layer
Protocol Extensions
HTTP Upgrade Negotiation
WebSocket Use Cases and Performance
Request and Response Streaming
Message Overhead
Data Efficiency and Compression
Custom Application Protocols
Deploying WebSocket Infrastructure
Performance Checklist
18. WebRTC
Standards and Development of WebRTC
Audio and Video Engines
Acquiring Audio and Video with getUserMedia
Real-Time Network Transports
Brief Introduction to RTCPeerConnection API
Establishing a Peer-to-Peer Connection
Signaling and Session Negotiation
Session Description Protocol (SDP)
Interactive Connectivity Establishment (ICE)
Incremental Provisioning (Trickle ICE)
Tracking ICE Gathering and Connectivity Status
Putting It All Together
Delivering Media and Application Data
Secure Communication with DTLS
Delivering Media with SRTP and SRTCP
Delivering application data with SCTP
DataChannel
Setup and Negotiation
Configuring Message Order and Reliability
Partially Reliable Delivery and Message Size
WebRTC Use Cases and Performance
Audio, Video, and Data Streaming
Multiparty Architectures
Infrastructure and Capacity Planning
Data Efficiency and Compression
Performance Checklist
Index
High Performance Browser Networking
原文:http://blog.csdn.net/tanmengwen/article/details/39378811
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年09月23日 (328)
2021年09月24日 (313)
2021年09月17日 (191)
2021年09月15日 (369)
2021年09月16日 (411)
2021年09月13日 (439)
2021年09月11日 (398)
2021年09月12日 (393)
2021年09月10日 (160)
2021年09月08日 (222)
最新文章
更多>
2021/09/28 scripts
2022-05-27
vue自定义全局指令v-emoji限制input输入表情和特殊字符
2022-05-27
9.26学习总结
2022-05-27
vim操作
2022-05-27
深入理解计算机基础 第三章
2022-05-27
C++ string 作为形参与引用传递(转)
2022-05-27
python 加解密
2022-05-27
JavaScript-对象数组里根据id获取name,对象可能有children属性
2022-05-27
SQL语句——保持现有内容在后面增加内容
2022-05-27
virsh命令文档
2022-05-27
教程昨日排行
更多>
1.
list.reverse()
2.
Django Admin 管理工具
3.
AppML 案例模型
4.
HTML 标签列表(功能排序)
5.
HTML 颜色名
6.
HTML 语言代码
7.
jQuery 事件
8.
jEasyUI 创建分割按钮
9.
jEasyUI 创建复杂布局
10.
jEasyUI 创建简单窗口
友情链接
汇智网
PHP教程
插件网
关于我们
-
联系我们
-
留言反馈
- 联系我们:wmxa8@hotmail.com
© 2014
bubuko.com
版权所有
打开技术之扣,分享程序人生!