diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-04-08 00:22:45 -0300 |
---|---|---|
committer | Rafael França <rafaelmfranca@gmail.com> | 2016-04-08 00:22:45 -0300 |
commit | 391d579343ac61f74a89f7a1eac35c3d4941529b (patch) | |
tree | ce569fa190e58a257144026a3028b8684c2cc10a /guides/source | |
parent | ee96c8fff4a84965943165520886a3dd0b0320a1 (diff) | |
parent | e08232cda2efd8c25e1fb08fe7d44915a64f5106 (diff) | |
download | rails-391d579343ac61f74a89f7a1eac35c3d4941529b.tar.gz rails-391d579343ac61f74a89f7a1eac35c3d4941529b.tar.bz2 rails-391d579343ac61f74a89f7a1eac35c3d4941529b.zip |
Merge pull request #24461 from repinel/fix-etag-docs
Fixes for the strong & weak ETags guide [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/caching_with_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/caching_with_rails.md b/guides/source/caching_with_rails.md index ae204a55d6..745f09f523 100644 --- a/guides/source/caching_with_rails.md +++ b/guides/source/caching_with_rails.md @@ -526,7 +526,7 @@ Weak ETags have a leading `W/` to differentiate them from strong ETags. "618bbc92e2d35ea1945008b42799b0e7" → Strong ETag ``` -Unlike weak ETag, Strong ETag implies that response should be exactly same +Unlike weak ETag, strong ETag implies that response should be exactly the same and byte by byte identical. Useful when doing Range requests within a large video or PDF file. Some CDNs support only strong ETags, like Akamai. If you absolutely need to generate a strong ETag, it can be done as follows. |