仪表盘
版本库
文件存储
活动
搜索
登录
Yw
/
Run.V1
设备运行分析
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
项目初始化
lixiaojun
2023-12-12
f8751d006f8fa8b5332927624a9b2f9077ce2585
[Yw/Run.V1.git]
/
Yw.Service.Run.Core
/
5-cache
/
0-helper
/
RedisKeyHelper.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace Yw.RedisCache.Run
{
internal class RedisKeyHelper
{
/// <summary>
/// 生成Key
/// </summary>
public static string CreateKey(string flag)
{
return $"{RunParasHelper.Run.RedisCache.Prefix}:{flag}";
}
}
}