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