From e424218b01ffbadcc31ce2435679a5484a6c82da Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Thu, 28 May 2026 12:14:18 +0200 Subject: [PATCH] Fix cache duration --- MP.SPEC/Data/MpDataService.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MP.SPEC/Data/MpDataService.cs b/MP.SPEC/Data/MpDataService.cs index d12b3fed..908adf2a 100644 --- a/MP.SPEC/Data/MpDataService.cs +++ b/MP.SPEC/Data/MpDataService.cs @@ -2718,14 +2718,14 @@ namespace MP.SPEC.Data private IDatabase redisDb = null!; /// - /// Durata cache breve standard (5 sec) + /// Durata cache Lunga standard (300 sec) /// - private int redisLongTimeCache = 5; + private int redisLongTimeCache = 300; /// - /// Durata cache long standard (5min) + /// Durata cache Breve standard (5 sec) /// - private int redisShortTimeCache = 300; + private int redisShortTimeCache = 5; private bool traceEnabled = false;