diff --git a/Server/System/Redis.cs b/Server/System/Redis.cs index 402dafa..21bf4ee 100644 --- a/Server/System/Redis.cs +++ b/Server/System/Redis.cs @@ -34,28 +34,6 @@ namespace Server.System redis = ConnectionMultiplexer.Connect($"{host}:{port}"); db = redis.GetDatabase(); } - - test(); - } - - public void test() - { - Console.WriteLine("----------"); - Dictionary 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)