mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-15 01:30:33 +08:00
11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
module.exports = async (ctx, next) => {
|
|
await next();
|
|
|
|
if (ctx.request.path !== '/') {
|
|
ctx.debug.request++;
|
|
if (ctx.response.get('X-Koa-Redis-Cache') || ctx.response.get('X-Koa-Memory-Cache')) {
|
|
ctx.debug.hitCache++;
|
|
}
|
|
}
|
|
};
|