test용 코드 제거

This commit is contained in:
김민서 2024-04-03 14:30:05 +09:00
parent 170171bb56
commit cc08ad8126
1 changed files with 0 additions and 22 deletions

View File

@ -34,28 +34,6 @@ namespace Server.System
redis = ConnectionMultiplexer.Connect($"{host}:{port}");
db = redis.GetDatabase();
}
test();
}
public void test()
{
Console.WriteLine("----------");
Dictionary<string, object> hash = GetHash("testhash");
foreach (var item in hash)
{
Console.WriteLine($"{item.Key} : {item.Value}");
}
//hash.Add("nickname", "ganada");
//hash.Add("uuid", "addzip");
//hash.Add("id", 1);
//SetHash(hash, "testhash");
//GetHash("testhash");
Console.WriteLine("----------");
}
public void SetString(object value, params string[] keys)