Python urllib2添加' no-cache'请求标头不起作用

时间:2015-01-12 17:56:07

标签: python urllib2 varnish no-cache

我正在使用python 2.7.3和varnish-3.0.2。

我正在使用python urllib2库。

我希望强制服务器从数据库中恢复最新数据,而不是使用清漆缓存,所以我在服务请求中添加了以下内容

    req.add_header('Pragma', 'no-cache');
    req.add_header('Cache-Control', 'no-cache');

但这不起作用 - 它没有效果。

以下是代码段:

req = urllib2.Request(url='http://%s:%d/api/myquery/myrequest' % (self.host, self.port))
return self.httpreq(req)
    .
    .

def httpreq(self, req, data=None):

    req.add_header('Pragma', 'no-cache');
    req.add_header('Cache-Control', 'no-cache');

    try:
        http_handler = urllib2.HTTPHandler(debuglevel=1)
        opener = urllib2.build_opener(http_handler, urllib2.HTTPCookieProcessor(self.cj))
        if data:
            req = opener.open(req, data, timeout=wwbsettings.HTTP_TIMEOUT)
        else:
            req = opener.open(req, timeout=wwbsettings.HTTP_TIMEOUT)
        resp = req.read()
        log('data=%s' % resp)
        content = json.loads(resp)
        return content
    except urllib2.HTTPError as e:
        resp = e.read()
        log('HTTPError: %s - %s' % (e, resp))
        content = json.loads(resp)
        return content
    except urllib2.URLError as e:
        log('URLError: %s' % e)
        return None
    except Exception as e:
        log('Exceptions: %s' % e)
        return None

这是请求标题:

header: Server: nginx/1.1.19
header: Date: Mon, 12 Jan 2015 17:51:22 GMT
header: Content-Type: application/json
header: Content-Length: 636
header: Connection: close
header: Vary: Accept
header: ETag: "acfa981667dfb6de47881623ad092672"
header: Allow: HEAD, GET, OPTIONS
header: Cache-Control: s-maxage=604800, public, max-age=300
header: Accept-Ranges: bytes
header: X-Varnish: 1115442413
header: Age: 0
header: Via: 1.1 varnish
header: X-Varnish-Cache: MISS

我的回复中没有收到最新数据 - 有人可以帮忙吗? 非常感谢。

0 个答案:

没有答案