Fix cache dati x errore naming

This commit is contained in:
Samuele Locatelli
2025-07-10 18:05:19 +02:00
parent cd5dd98523
commit 9986ba18c2
+1 -1
View File
@@ -55,7 +55,7 @@ namespace Lux.Data.Services
sw.Start();
List<CustomerModel>? result = new List<CustomerModel>();
// cerco in redis...
string currKey = $"{redisBaseKey}:Offers:ALL";
string currKey = $"{redisBaseKey}:Customers:ALL";
RedisValue rawData = redisDb.StringGet(currKey);
if (rawData.HasValue)
{