a67359d4f6
- modifica key x evitare check incrociati tra cache redis diverse - modifiche x log - test nuovo installer debug
30 lines
842 B
C#
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";
|
|
}
|
|
}
|