cache: serve stale response

This commit is contained in:
Alex Gleason 2024-04-13 14:33:59 -05:00
parent 6ab3a640bf
commit afed0a0b34
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 19 additions and 6 deletions

View File

@ -134,7 +134,7 @@ app.get('/users/:username', actorController);
app.get('/nodeinfo/:version', nodeInfoSchemaController);
app.get('/api/v1/instance', cache({ expires: Time.seconds(3) }), instanceController);
app.get('/api/v1/instance', cache({ expires: Time.minutes(5) }), instanceController);
app.get('/api/v1/apps/verify_credentials', appCredentialsController);
app.post('/api/v1/apps', createAppController);

View File

@ -12,19 +12,32 @@ export const cache = (opts: CacheOpts): MiddlewareHandler => {
let expires = Date.now() + opts.expires;
return async (c, next) => {
if (!response || (Date.now() > expires)) {
debug('Building cache for page', c.req.url);
expires = Date.now() + opts.expires;
const now = Date.now();
const expired = now > expires;
async function updateCache() {
await next();
const res = c.res.clone();
if (res.status < 500) {
response = res;
}
} else {
return res;
}
if (response && !expired) {
debug('Serving page from cache', c.req.url);
return response.clone();
} else {
expires = Date.now() + opts.expires;
if (response && expired) {
debug('Serving stale cache, rebuilding', c.req.url);
const stale = response.clone();
updateCache();
await new Promise((resolve) => setTimeout(resolve, 0));
return stale;
}
debug('Building cache for page', c.req.url);
return await updateCache();
}
};
};