初始化

This commit is contained in:
2025-11-20 16:20:04 +08:00
commit 4230fa4d27
777 changed files with 232488 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using Common;
namespace ConsoleAppredissub
{
internal class Program
{
static void Main(string[] args)
{
CSRedisCacheHelper.Sub();
for (int i = 0;i<=100;i++)
{
CSRedisCacheHelper.redis.Publish("mypub","vvvvv");
Thread.Sleep(500);
}
Console.WriteLine("Hello, World!");
}
}
}