From 6869a84fd49c9c313ec79d6a7942f3a1df7c2844 Mon Sep 17 00:00:00 2001 From: Samuele Locatelli Date: Thu, 6 Oct 2022 12:39:30 +0200 Subject: [PATCH] Fluxh cache limitato a dati dei grafici: - parametri - tool life --- MP.MONO.UI/Data/CurrentDataService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MP.MONO.UI/Data/CurrentDataService.cs b/MP.MONO.UI/Data/CurrentDataService.cs index 276b818..1f14a7a 100644 --- a/MP.MONO.UI/Data/CurrentDataService.cs +++ b/MP.MONO.UI/Data/CurrentDataService.cs @@ -323,7 +323,7 @@ namespace MP.MONO.UI.Data public async Task FlushRedisCache() { await Task.Delay(1); - RedisValue pattern = new RedisValue($"{Constants.BASE_HASH}*"); + RedisValue pattern = new RedisValue($"{Constants.BASE_HASH}:Cache*"); bool answ = await ExecFlushRedisPattern(pattern); return answ; }