blob: cba725218317819aca0828b63ba9a193bc6c557a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
---
title: Age
slug: Web/HTTP/Headers/Age
tags:
- Cabeçalhos
translation_of: Web/HTTP/Headers/Age
---
<div>{{HTTPSidebar}}</div>
<p>O cabeçalho <code><strong>Age</strong></code> contém o tempo, em segundos, em que o objeto já está no <em>cache</em> de um proxy.</p>
<p>O cabeçalho <code>Age</code> é normalmente perto de zero. Se <code>Age: 0</code>, é provável que ele tenha acabado de ser obtido do servidor de origem; senão, é normalmente calculado como a diferença entre a data corrente do proxy e o cabeçalho genérico {{HTTPHeader("Date")}} incluído na resposta HTTP.</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Tipo de cabeçalho</th>
<td>{{Glossary("Response header")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name")}}</th>
<td>não</td>
</tr>
</tbody>
</table>
<h2 id="Sintaxe">Sintaxe</h2>
<pre class="syntaxbox">Age: <delta-seconds>
</pre>
<h2 id="Diretivas">Diretivas</h2>
<dl>
<dt><delta-seconds></dt>
<dd>
<p>Um inteiro não-negativo, representando o tempo em segundos em que o objeto já está no <em>cache</em> do proxy.</p>
</dd>
</dl>
<h2 id="Exemplos">Exemplos</h2>
<pre>Age: 24</pre>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Especificação</th>
<th scope="col">Título</th>
</tr>
<tr>
<td>{{RFC("7234", "Age", "5.1")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Caching</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilidade_de_navegadores">Compatibilidade de navegadores</h2>
<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("http.headers.Age")}}</p>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li>{{HTTPHeader("Cache-Control")}}</li>
<li>{{HTTPHeader("Expires")}}</li>
</ul>
|