Fix cache duration

This commit is contained in:
Samuele Locatelli
2026-05-28 12:14:18 +02:00
parent 9df2a7853f
commit e424218b01
+4 -4
View File
@@ -2718,14 +2718,14 @@ namespace MP.SPEC.Data
private IDatabase redisDb = null!;
/// <summary>
/// Durata cache breve standard (5 sec)
/// Durata cache Lunga standard (300 sec)
/// </summary>
private int redisLongTimeCache = 5;
private int redisLongTimeCache = 300;
/// <summary>
/// Durata cache long standard (5min)
/// Durata cache Breve standard (5 sec)
/// </summary>
private int redisShortTimeCache = 300;
private int redisShortTimeCache = 5;
private bool traceEnabled = false;