9 Matching Annotations
- Aug 2023
-
datatracker.ietf.org datatracker.ietf.org
Tags
- http:header=if-match
- http:header=cache-control:max-age
- http:header=cache-control:no-cache
- http
- http:header=cache-control
- http:header=cache-control:proxy-revalidate
- http:header=expires
- urn:ietf:rfc:9111
- http:header=cache-control:must-revalidate
- http:header=cache-control:must-understand
- http:header=warning
- http:header=if-unmodified-since
- http:header=cache-control:private
- caching
- http:code=206
- http:header=if-none-match
- http:header=cache-control:public
- wikipedia:en=HTTP_caching
- http:header=cache-control:min-fresh
- http:header=if-range
- http:header=cache-control:s-maxage
- http:header=cache-control:only-if-cached
- http:header=cache-control:no-transform
- http:header=cache-control:max-stale
- http:header=if-modified-since
- http:header=age
- http:header=pragma
- http:header=cache-control:no-store
- http:code=304
Annotators
URL
-
- May 2023
-
www.bortzmeyer.org www.bortzmeyer.org
-
datatracker.ietf.org datatracker.ietf.org
-
-
```http GET /users
200 OK Accept-Ranges: users Content-Range: users 0-9/200
[ 0, …, 9 ] ```
```http GET /users Range: users=0-9
206 Partial Content Accept-Ranges: users Content-Range: users 0-9/200
[ 0, …, 9 ] ```
```http GET /users Range: users=0-9,50-59
206 Partial Content Accept-Ranges: users Content-Type: multipart/mixed; boundary=next
--next Content-Range: users 0-9/200
[ 0, …, 9 ]
--next Content-Range: users 50-59/200
[ 50, …, 59 ]
--next-- ```
```http GET /users?name=Fred
206 Partial Content Accept-Ranges: users Content-Range: users 0-100/*
[ 0, …, 100 ] ```
-
-
stackoverflow.com stackoverflow.com
-
www.bortzmeyer.org www.bortzmeyer.org
-
datatracker.ietf.org datatracker.ietf.org