Nginx etag生成背后的算法


17

在Nginx中生成etag的算法是什么?它们现在看起来像“ 554b73dc-6f0d”。

它们仅从时间戳生成吗?


1
我不相信它们包含一个索引节点(与默认情况下的Apache不同)...尽管我很难找到很久以前的位置(最好使用缓存集群)。您是否在没有有用时钟(例如嵌入式时钟)的环境中工作?
卡梅隆·克尔

1
developer.yahoo.com/performance/rules.html#etags中有一些相关信息(但与Nginx无关)
Cameron Kerr

Answers:


32

从源代码:http : //lxr.nginx.org/ident?_i=ngx_http_set_etag

1803 ngx_int_t
1804 ngx_http_set_etag(ngx_http_request_t *r)
1805 {
1806     ngx_table_elt_t           *etag;
1807     ngx_http_core_loc_conf_t  *clcf;
1808 
1809     clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
1810 
1811     if (!clcf->etag) {
1812         return NGX_OK;
1813     }
1814 
1815     etag = ngx_list_push(&r->headers_out.headers);
1816     if (etag == NULL) {
1817         return NGX_ERROR;
1818     }
1819 
1820     etag->hash = 1;
1821     ngx_str_set(&etag->key, "ETag");
1822 
1823     etag->value.data = ngx_pnalloc(r->pool, NGX_OFF_T_LEN + NGX_TIME_T_LEN + 3);
1824     if (etag->value.data == NULL) {
1825         etag->hash = 0;
1826         return NGX_ERROR;
1827     }
1828 
1829     etag->value.len = ngx_sprintf(etag->value.data, "\"%xT-%xO\"",
1830                                   r->headers_out.last_modified_time,
1831                                   r->headers_out.content_length_n)
1832                       - etag->value.data;
1833 
1834     r->headers_out.etag = etag;
1835 
1836     return NGX_OK;
1837 }

您可以在第1830和1831行看到输入是最后修改的时间和内容长度。


Apache ETags相比,后者也是根据修改时间和大小计算得出的,但也可以配置为取决于文件的索引节点。
Raedwald

1

在PHP中将需要它。

$pathToFile = '/path/to/file.png';

$lastModified = filemtime($pathToFile);
$length = filesize($pathToFile);

header('ETag: "' . sprintf('%x-%x', $lastModified, $length) . '"');

3
这比公认的答案好吗?
RalfFriedl

1
@RalfFriedl这个答案对PHP程序员会更好,因为将来像我这样的PHP程序员会寻找3个关键字“ nginx”,“ etag”,“ alg”,他会找到我的答案。这也许可以防止重复问题的产生。
Max_Payne
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.