1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Updated file documentation [ci skip]

This commit is contained in:
Chashmeet Singh 2016-02-24 23:13:43 +05:30
parent edbab4e4f5
commit 861b98def8

View file

@ -523,7 +523,7 @@ end
### A note on weak ETags ### A note on weak ETags
Etags generated by Rails are weak by default. Weak etags allow symantically equivalent responses to have the same etags, even if their bodies do not match exactly. This is useful when we don't want the page regenerated for minor changes in response body. If you absolutely need to generate a strong etag, it can be assigned to the header directly. Etags generated by Rails are weak by default. Weak etags allow symantically equivalent responses to have the same etags, even if their bodies do not match exactly. This is useful when we don't want the page to be regenerated for minor changes in response body. If you absolutely need to generate a strong etag, it can be assigned to the header directly.
```ruby ```ruby
response.add_header "ETag", Digest::MD5.hexdigest(response.body) response.add_header "ETag", Digest::MD5.hexdigest(response.body)