You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Monitor.LogService;
|
|
using DataBase.Real.Redis;
|
|
|
|
namespace Module.UpsEqm.ModBusTcp
|
|
{
|
|
/// <summary>
|
|
/// 参数值发送到Redis
|
|
/// </summary>
|
|
public class UpsValueToRedis
|
|
{
|
|
/// <summary>
|
|
/// Redis类实例化
|
|
/// </summary>
|
|
private RedisBaseHelper _redis = new RedisBaseHelper(6);
|
|
|
|
/// <summary>
|
|
/// 存储UPS参数信息
|
|
/// </summary>
|
|
internal void StoredUpsParamValue(string eqmNo, MUpsParamsVal value)
|
|
{
|
|
try
|
|
{
|
|
//保存到Redis
|
|
//Task<bool> result = _redis.SetStrValueAsync(eqmNo+"FireStatusValue", value, TimeSpan.FromSeconds(300));
|
|
//Task<bool> result = _redis.SetStrValueAsync(eqmNo + "FireStatusValue", value);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ex.ToString();
|
|
return;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|