我试图http.Client在 go 中只下载前 1kb 的大文件,但似乎response.Body总是完全缓冲。是否可以控制缓冲量?
如果是这样,这如何与应用引擎 urlfetch 服务一起使用?
以下适用于 python 中的应用引擎 urlfetch,我正在尝试将其移植到:
from urllib2 import urlopen
req = Request(url)
urlopen(req).read(1024) # Read the first 1kb.
相关分类