From 3afc9b6e1030dc82c658ad22c675107d722007ab Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Wed, 7 Jan 2026 14:57:57 +0000 Subject: [PATCH] default cache expiration --- apps/server/src/app.module.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/server/src/app.module.ts b/apps/server/src/app.module.ts index 9299f423..174e71e1 100644 --- a/apps/server/src/app.module.ts +++ b/apps/server/src/app.module.ts @@ -50,6 +50,7 @@ try { const redisUrl = environmentService.getRedisUrl(); return { + ttl: 5 * 1000, stores: [new KeyvRedis(redisUrl)], }; },