We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e23418 commit e78336eCopy full SHA for e78336e
src/cache/mod.rs
@@ -1,4 +1,13 @@
1
//! HTTP caching.
2
+//!
3
+//! Web page performance can be significantly improved by caching resources.
4
+//! This submodule includes headers and types to communicate how and when to
5
+//! cache resources.
6
7
+//! # Further Reading
8
9
+//! - [MDN: HTTP Caching](https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching)
10
+//! - [MDN: HTTP Conditional Requests](https://developer.mozilla.org/en-US/docs/Web/HTTP/Conditional_requests)
11
12
mod cache_control;
13
0 commit comments