perf: renderBaseでCache-Controlを15秒から300秒に

This commit is contained in:
tamaina 2023-02-09 07:49:39 +00:00
parent cd1f2adca7
commit a486716520
2 changed files with 8 additions and 1 deletions

View file

@ -8,6 +8,13 @@
You should also include the user name that made the change.
-->
## 13.x.x (unreleased)
### Improvements
- Server: UIのHTMLートなどの特別なページを除くのキャッシュ時間を15秒から300秒に
### Bugfixes
-
## 13.5.3 (2023/02/09)

View file

@ -337,7 +337,7 @@ export class ClientServerService {
const renderBase = async (reply: FastifyReply) => {
const meta = await this.metaService.fetch();
reply.header('Cache-Control', 'public, max-age=15');
reply.header('Cache-Control', 'public, max-age=300');
return await reply.view('base', {
img: meta.bannerUrl,
title: meta.name ?? 'Misskey',