- Python-网络编程
- Python-网络简介
- Python-网络环境
- Python - 互联网协议
- Python-IP 地址
- Python-DNS 查找
- Python-路由
- Python - HTTP 请求
- Python-HTTP 响应
- Python - HTTP 标头
- Python - 自定义 HTTP 请求
- Python - 请求状态代码
- Python-HTTP 身份验证
- Python - HTTP 数据下载
- Python - 连接重用
- Python - 网络接口
- Python-套接字编程
- Python-HTTP 客户端
- Python-HTTP 服务器
- Python - 构建 URL
- Python - Web表单提交
- Python - 数据库和 SQL
- Python-远程登录
- Python - 电子邮件消息
- Python-SMTP
- Python-POP3
- Python-IMAP
- Python-SSH
- Python-FTP
- Python-SFTP
- Python - Web 服务器
- Python-上传数据
- Python-代理服务器
- Python - 目录列表
- Python-远程过程调用
- Python - RPC JSON 服务器
- Python - 谷歌地图
- Python - RSS 源
Python - 连接重用
当客户端向服务器发出有效请求时,它们之间会建立临时连接以完成发送和接收过程。但在某些情况下,连接需要保持活动状态,因为正在通信的程序之间需要自动请求和响应。以交互式网页为例。网页加载后,需要提交表单数据或下载更多 CSS 和 JavaScript 组件。连接需要保持活动状态,以获得更快的性能以及客户端和服务器之间的不间断通信。
Python 提供了urllib3模块,该模块具有处理客户端和服务器之间的连接重用的方法。在下面的示例中,我们创建一个连接并通过使用 GET 请求传递不同的参数来发出多个请求。我们收到多个响应,但我们也计算该过程中已使用的连接数。正如我们所看到的,连接数没有改变,这意味着连接的重用。
from urllib3 import HTTPConnectionPool pool = HTTPConnectionPool('ajax.googleapis.com', maxsize=1) r = pool.request('GET', '/ajax/services/search/web', fields={'q': 'python', 'v': '1.0'}) print 'Response Status:', r.status # Header of the response print 'Header: ',r.headers['content-type'] # Content of the response print 'Python: ',len(r.data) r = pool.request('GET', '/ajax/services/search/web', fields={'q': 'php', 'v': '1.0'}) # Content of the response print 'php: ',len(r.data) print 'Number of Connections: ',pool.num_connections print 'Number of requests: ',pool.num_requests
当我们运行上面的程序时,我们得到以下输出 -
Response Status: 200 Header: text/javascript; charset=utf-8 Python: 211 php: 211 Number of Connections: 1 Number of requests: 2