From cc08ad812698ad50bea233581b27e7fefa8a0683 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=AF=BC=EC=84=9C?= Date: Wed, 3 Apr 2024 14:30:05 +0900 Subject: [PATCH] =?UTF-8?q?test=EC=9A=A9=20=EC=BD=94=EB=93=9C=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Server/System/Redis.cs | 22 ---------------------- 1 file changed, 22 deletions(-) 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)