Skip to content

Commit 72eae0b

Browse files
Update ETags tables with zstd (#26247)
1 parent 1229230 commit 72eae0b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/content/docs/cache/reference/etag-headers.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ The Cloudflare network will take the following actions, depending on the visitor
4444
| `br` | GZIP | Decompress GZIP and return uncompressed response to visitor with weak ETag header: `etag: W/"foobar"`. |
4545
| `gzip` | Brotli | Decompress Brotli and return uncompressed response to visitor with weak ETag header: `etag: W/"foobar"`. |
4646
| `gzip` | (none) | Return uncompressed response to visitor with strong ETag header: `etag: "foobar"`. |
47+
| `gzip, br, zstd` | Zstandard | Return zstd-compressed response to visitor with strong ETag header: `etag: "foobar"`.
48+
| `gzip, br` | Zstandard | Decompress zstd and return br response to visitor with weak ETag header: `etag: W/"foobar"`.
49+
| `zstd` | Brotli/GZIP | Decompress zstd and return zstd response to visitor with weak ETag header: `etag: W/"foobar"`. |
4750

4851
</table-wrap>
4952

@@ -74,9 +77,14 @@ The Cloudflare network will take the following actions, depending on the visitor
7477
| `br` | GZIP | Decompress GZIP and return Brotli-compressed response to visitor with weak ETag header: `etag: W/"foobar"`. |
7578
| `gzip` | Brotli | Decompress Brotli and return GZIP-compressed response to visitor with weak ETag header: `etag: W/"foobar"`. |
7679
| `gzip` | (none) | Compress origin response using GZIP and return it to visitor with weak ETag header: `etag: W/"foobar"`. |
80+
| `gzip, br, zstd` | Zstandard | Return zstd-compressed response to visitor with strong ETag header: `etag: "foobar"`. |
81+
| `gzip, br` | Zstandard | Decompress zstd and return uncompressed response to visitor with weak ETag header: `etag: W/"foobar"`. |
82+
| `zstd` | Brotli | Decompress zstd and return uncompressed response to visitor with weak ETag header: `etag: W/"foobar"`. |
7783

7884
</table-wrap>
7985

86+
Refer to [Content compression](/speed/optimization/content/compression/) for more information.
87+
8088
## Important remarks
8189

8290
* You must set the value in a strong ETag header using double quotes (for example, `etag: "foobar"`). If you use an incorrect format, Cloudflare will remove the ETag header instead of converting it to a weak ETag. 

0 commit comments

Comments
 (0)