Skip to content

Commit

Permalink
fix:content error
Browse files Browse the repository at this point in the history
  • Loading branch information
JunLiangWangX committed Mar 16, 2024
1 parent ad0f8a9 commit 88029e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/docs/performance-optimization-strategy/http-cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ Cache-Control: max-age=0, must-revalidate

### 不使用缓存

**如果你不想使用缓存,不希望将响应存储在任何缓存中,可以通过在响应标头中添加`Cache-Control: no-cache`来实现。需要注意的是指定该指令只会阻止存储响应,但不会删除相同 URL 的任何已存储响应,也就是说如果已经为特定 URL 存储了旧响应,则返回 `no-store` 不会阻止旧响应被重用。**
**如果你不想使用缓存,不希望将响应存储在任何缓存中,可以通过在响应标头中添加`Cache-Control: no-store`来实现。需要注意的是指定该指令只会阻止存储响应,但不会删除相同 URL 的任何已存储响应,也就是说如果已经为特定 URL 存储了旧响应,则返回 `no-store` 不会阻止旧响应被重用。**

> 不使用缓存示例
Expand Down

0 comments on commit 88029e4

Please sign in to comment.