diff options
Diffstat (limited to 'files/de/web/http/headers/age/index.html')
-rw-r--r-- | files/de/web/http/headers/age/index.html | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/files/de/web/http/headers/age/index.html b/files/de/web/http/headers/age/index.html new file mode 100644 index 0000000000..1f7190fc36 --- /dev/null +++ b/files/de/web/http/headers/age/index.html @@ -0,0 +1,80 @@ +--- +title: Age +slug: Web/HTTP/Headers/Age +tags: + - Caching + - HTTP + - Response + - header +translation_of: Web/HTTP/Headers/Age +--- +<div>{{HTTPSidebar}}</div> + +<p><code><strong>Age</strong></code> nennt die Dauer in Sekunden, die das angefragte Objekt bereits in einem Proxy-Cache zwischengespeichert ist.</p> + +<p>Die Dauer versteht sich üblicherweise als Differenz zwischen der aktuellen Uhrzeit und der Angabe {{HTTPHeader("Date")}}, die den Zeitpunkt anzeigt, an dem das Objekt ursprünglich erstellt wurde.</p> + +<p>Der Wert 0 deutet darauf hin, dass das Objekt gerade durch den Cache vom eigentlichen Server geholt wurde, mithin aktuell ist.</p> + +<table class="properties"> + <tbody> + <tr> + <th scope="row">Typ</th> + <td>{{Glossary("Response header", "Antwort")}}</td> + </tr> + <tr> + <th scope="row">{{Glossary("Forbidden header name", "Verboten")}}</th> + <td>Nein</td> + </tr> + </tbody> +</table> + +<h2 id="Syntax">Syntax</h2> + +<pre class="syntaxbox">Age: <delta-seconds> +</pre> + +<h2 id="Argument">Argument</h2> + +<dl> + <dt><delta-seconds></dt> + <dd> + <p>Eine positive Ganzzahl, die der Dauer in Sekunden entspricht, die das Objekt von einem Proxy-Cache zum Zeitpunkt des Abrufs bereits zwischengespeichert wurde.</p> + </dd> +</dl> + +<h2 id="Beispiele">Beispiele</h2> + +<pre>Age: 24 +Date: Tue, 15 Nov 1994 08:12:31 GMT +</pre> + +<p>Das Objekt befindet sich seit 24 Sekunden im Cache. Die aktuelle Uhrzeit müsste demnach 8:12:55 sein, 8:12:31 + 24s.</p> + +<h2 id="Spezifikationen">Spezifikationen</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spezifikation</th> + <th scope="col">Titel</th> + </tr> + <tr> + <td>{{RFC("7234", "Age", "5.1")}}</td> + <td>Hypertext Transfer Protocol (HTTP/1.1): Caching</td> + </tr> + </tbody> +</table> + +<h2 id="Browserkompatibilität">Browserkompatibilität</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="Siehe_auch">Siehe auch</h2> + +<ul> + <li>{{HTTPHeader("Cache-Control")}}</li> + <li>{{HTTPHeader("Expires")}}</li> +</ul> |