From d79f316e1c617b165487da0198765d992cce2fff Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Thu, 15 Jul 2021 13:41:58 -0400 Subject: delete pages that were never translated from en-US (pl, part 2) (#1551) --- files/pl/web/http/headers/cache-control/index.html | 169 --------------------- 1 file changed, 169 deletions(-) delete mode 100644 files/pl/web/http/headers/cache-control/index.html (limited to 'files/pl/web/http') diff --git a/files/pl/web/http/headers/cache-control/index.html b/files/pl/web/http/headers/cache-control/index.html deleted file mode 100644 index 2efcf437d8..0000000000 --- a/files/pl/web/http/headers/cache-control/index.html +++ /dev/null @@ -1,169 +0,0 @@ ---- -title: Cache-Control -slug: Web/HTTP/Headers/Cache-Control -translation_of: Web/HTTP/Headers/Cache-Control ---- -
{{HTTPSidebar}}
- -

Cache-Control nagłówek jest stosowany do określania dyrektyw sterujących pamięcią podręczną w zapytaniu i odpowiedzi protokołu HTTP. Dyrektywy pamięci podręcznej są jednokierunkowe, co oznacza że dyrektywa użyta w zapytaniu klienta HTTP nie musi pojawić się w odpowiedzi serwera.

- - - - - - - - - - - - - - - - -
Header type{{Glossary("General header")}}
{{Glossary("Forbidden header name")}}no
{{Glossary("Simple response header", "CORS-safelisted response-header")}}yes
- -

Składnia

- -

Wielkość liter nie ma znaczeniu w określaniu dyrektyw. Dyrektywa może posiadać opcjonalny argument który może być podany jako token (słowo) lub string w cudzysłowiu. Możliwe jest podanie wielu dyrektyw przez oddzielenie ich przecinkiem.

- -

Dyrektywy zapytania

- -

Standardowe dyrektywy nagłówka Cache-Control które mogą być użyte w zapytaniu klienta HTTP.

- -
Cache-Control: max-age=<seconds>
-Cache-Control: max-stale[=<seconds>]
-Cache-Control: min-fresh=<seconds>
-Cache-Control: no-cache
-Cache-Control: no-store
-Cache-Control: no-transform
-Cache-Control: only-if-cached
-
- -

Dyrektywy odpowiedzi

- -

Standardowe dyrektywy nagłówka Cache-Control które mogą być użyte w odpowiedzi serwera HTTP.

- -
Cache-Control: must-revalidate
-Cache-Control: no-cache
-Cache-Control: no-store
-Cache-Control: no-transform
-Cache-Control: public
-Cache-Control: private
-Cache-Control: proxy-revalidate
-Cache-Control: max-age=<seconds>
-Cache-Control: s-maxage=<seconds>
-
- -

Extension Cache-Control directives

- -

Extension Cache-Control directives are not part of the core HTTP caching standards document. Be sure to check the compatibility table for their support.

- -
Cache-Control: immutable
-Cache-Control: stale-while-revalidate=<seconds>
-Cache-Control: stale-if-error=<seconds>
-
- -

Directives

- -

Cacheability

- -
-
public
-
Indicates that the response may be cached by any cache.
-
private
-
Indicates that the response is intended for a single user and must not be stored by a shared cache. A private cache may store the response.
-
no-cache
-
Forces caches to submit the request to the origin server for validation before releasing a cached copy.
-
only-if-cached
-
Indicates to not retrieve new data. This being the case, the server wishes the client to obtain a response only once and then cache. From this moment the client should keep releasing a cached copy and avoid contacting the origin-server to see if a newer copy exists.
-
- -

Expiration

- -
-
max-age=<seconds>
-
Specifies the maximum amount of time a resource will be considered fresh. Contrary to Expires, this directive is relative to the time of the request.
-
s-maxage=<seconds>
-
Overrides max-age or the Expires header, but it only applies to shared caches (e.g., proxies) and is ignored by a private cache.
-
max-stale[=<seconds>]
-
Indicates that the client is willing to accept a response that has exceeded its expiration time. Optionally, you can assign a value in seconds, indicating the time the response must not be expired by.
-
min-fresh=<seconds>
-
Indicates that the client wants a response that will still be fresh for at least the specified number of seconds.
-
stale-while-revalidate=<seconds> {{experimental_inline}}
-
Indicates that the client is willing to accept a stale response while asynchronously checking in the background for a fresh one. The seconds value indicates for how long the client is willing to accept a stale response.
-
stale-if-error=<seconds> {{experimental_inline}}
-
Indicates that the client is willing to accept a stale response if the check for a fresh one fails. The seconds value indicates for how long the client is willing to accept the stale response after the initial expiration.
-
- -

Revalidation and reloading

- -
-
must-revalidate
-
The cache must verify the status of the stale resources before using it and expired ones should not be used.
-
proxy-revalidate
-
Same as must-revalidate, but it only applies to shared caches (e.g., proxies) and is ignored by a private cache.
-
immutable
-
Indicates that the response body will not change over time. The resource, if unexpired, is unchanged on the server and therefore the client should not send a conditional revalidation for it (e.g. If-None-Match or If-Modified-Since) to check for updates, even when the user explicitly refreshes the page. Clients that aren't aware of this extension must ignore them as per the HTTP specification. In Firefox, immutable is only honored on https:// transactions. For more information, see also this blog post.
-
- -

Other

- -
-
no-store
-
The cache should not store anything about the client request or server response.
-
no-transform
-
No transformations or conversions should be made to the resource. The Content-Encoding, Content-Range, Content-Type headers must not be modified by a proxy. A non- transparent proxy might, for example, convert between image formats in order to save cache space or to reduce the amount of traffic on a slow link. The no-transform directive disallows this.
-
- -

Examples

- -

Preventing caching

- -

To turn off caching, you can send the following response header. In addition, see also the Expires and Pragma headers.

- -
Cache-Control: no-cache, no-store, must-revalidate
-
- -

Caching static assets

- -

For the files in the application that will not change, you can usually add aggressive caching by sending the response header below. This includes static files that are served by the application such as images, CSS files and JavaScript files, for example. In addition, see also the Expires header.

- -
Cache-Control: public, max-age=31536000
- -

Specifications

- - - - - - - - - - - - - - - - - - - - -
SpecificationTitle
{{RFC("7234")}}Hypertext Transfer Protocol (HTTP/1.1): Caching
{{RFC("5861")}}HTTP Cache-Control Extensions for Stale Content
{{RFC("8246")}}HTTP Immutable Responses
- -

Browser compatibility

- -

{{Compat("http.headers.Cache-Control")}}

- -

See also

- - -- cgit v1.2.3-54-g00ecf