Add caching
This commit is contained in:
parent
7d73f63cd4
commit
23a7cfca9a
|
@ -80,6 +80,10 @@ impl<'a> Route<'a> {
|
||||||
b"Location".to_owned(),
|
b"Location".to_owned(),
|
||||||
destination.as_bytes(),
|
destination.as_bytes(),
|
||||||
).unwrap(),
|
).unwrap(),
|
||||||
|
Header::from_bytes(
|
||||||
|
b"Cache-Control".to_owned(),
|
||||||
|
b"max-age=86400,stale-while-revalidate=172800,stale-if-error=3155760000".to_owned(),
|
||||||
|
).unwrap(),
|
||||||
],
|
],
|
||||||
Cursor::new(Cow::Borrowed(b"")),
|
Cursor::new(Cow::Borrowed(b"")),
|
||||||
Some(0),
|
Some(0),
|
||||||
|
|
Loading…
Reference in a new issue