Files
Samuele Locatelli a67359d4f6 Maat, modifiche varie
- modifica key x evitare check incrociati tra cache redis diverse
- modifiche x log
- test nuovo installer debug
2024-10-30 09:22:17 +01:00

30 lines
842 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Maat.Core
{
public class Const
{
// dati conf REDIS Cache
public static readonly string RedisBaseKey = "Maat";
public static readonly string BASE_PATH = Directory.GetCurrentDirectory();
// Configurazioni
public static readonly string JOB_CONF_KEY = $"{RedisBaseKey}:Conf:JobConf";
// REDIS KEY Dati correnti
public static readonly string TASK_LOG_CURR_KEY = $"{RedisBaseKey}:Current:TaskLog";
//// REDIS KEY Dati cache
//public static readonly string DATA_LOG_KEY = $"{RedisBaseKey}:Cache:DataLog";
// REDIS Channels messaggi (verso UI)
public static readonly string TASK_LOG_M_QUEUE = $"MaatTaskLog";
}
}