{"id":7823,"date":"2022-08-08T17:57:00","date_gmt":"2022-08-08T08:57:00","guid":{"rendered":"https:\/\/www.auctionpro.co.kr\/?p=7823"},"modified":"2023-02-06T17:57:40","modified_gmt":"2023-02-06T08:57:40","slug":"c-%ec%9c%bc%eb%a1%9c-redis%eb%a0%88%eb%94%94%ec%8a%a4-%ec%97%b0%ea%b2%b0","status":"publish","type":"post","link":"https:\/\/www.auctionpro.co.kr\/?p=7823","title":{"rendered":"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">1.NuGet \uc5d0\uc11c StackExchange.Redis \uc124\uce58<\/h3>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis.png\"><img loading=\"lazy\" decoding=\"async\" width=\"906\" height=\"731\" src=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis.png\" alt=\"\" class=\"wp-image-7824\" srcset=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis.png 906w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis-300x242.png 300w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis-768x620.png 768w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis-660x533.png 660w\" sizes=\"auto, (max-width: 906px) 100vw, 906px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/redis_nuget_install.png\"><img loading=\"lazy\" decoding=\"async\" width=\"435\" height=\"440\" src=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/redis_nuget_install.png\" alt=\"\" class=\"wp-image-7863\" srcset=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/redis_nuget_install.png 435w, https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/redis_nuget_install-297x300.png 297w\" sizes=\"auto, (max-width: 435px) 100vw, 435px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">2.C# \uc18c\uc2a4 <\/h3>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"font-size:12 lang:c# decode:true \">using System;\nusing StackExchange.Redis;\n\nnamespace ConsoleRedis\n{\n   class Program\n   {   \n      static void Main(string[] args)\n      {\n        try\n          {\n           ConnectionMultiplexer redis = ConnectionMultiplexer.Connect(\"***.***.***.***:6379\");\n             if (redis.IsConnected)\n            {\n                IDatabase db = redis.GetDatabase();\n                db.StringSet(\"KE WITHIN 3DAYS BEFORE DEPARTURE KRW120000\", \"\ub300\ud55c\ud56d\uacf5 \ucd9c\ubc1c 3\uc77c\uc804 : \uc218\uc218\ub8cc 120,000\uc6d0\",TimeSpan.FromDays(10)); \/\/\ud558\ub8e8\ub9cc \uc800\uc7a5);\n                db.StringSet(\"KE WITHIN 4DAYS BEFORE DEPARTURE KRW110000\", \"\ub300\ud55c\ud56d\uacf5 \ucd9c\ubc1c 4\uc77c\uc804 : \uc218\uc218\ub8cc 110,000\uc6d0\");\n\n                Console.WriteLine(db.StringGet(\"KE WITHIN 3DAYS BEFORE DEPARTURE KRW120000\"));\n                Console.WriteLine(db.StringGet(\"KE WITHIN 4DAYS BEFORE DEPARTURE KRW110000\"));\n\n                 redis.Close();\n             }\n\n        }\n        catch (Exception ex)\n        {\n           Console.WriteLine(ex.Message.ToString());\n         }\n\n       Console.ReadLine();\n\n      }\n   }\n}<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">3.C# Error<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">It was not possible to connect to the redis server(s). \nError connecting right now. To allow this multiplexer to continue retrying until \nit's able to connect, use abortConnect=false in your connection string or \nAbortOnConnectFail=false; in your code.\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">4.telnet ***.***.***.*** 6379<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">DOS&gt;telnet ***.***.***.*** 6379\n\n-DENIED Redis is running in protected mode because protected mode is enabled and no password is set for the default user. \nIn this mode connections are only accepted from the loopback interface. \nIf you want to connect from external computers to Redis you may adopt one of the following solutions: \n1) Just disable protected mode sending the command 'CONFIG SET protected-mode no' from the loopback interface by connecting to Redis from the same host the server is running, \n however MAKE SURE Redis is not publicly accessible from internet if you do so. \n Use CONFIG REWRITE to make this change permanent. \n2) Alternatively you can just disable the protected mode by editing the Redis configuration file, and setting the protected mode option to 'no', and then restarting the server. \n3) If you started the server manually just for testing, restart it with the '--protected-mode no' option. \n4) Setup a an authentication password for the default user. \nNOTE: You only need to do one of the above things in order for the server to start accepting connections from the outside.<\/pre><\/div>\n\n\n\n<p><strong>CONFIG SET protected-mode no \ub85c \ubcc0\uacbd \ud558\ub77c\uace0 \ud569\ub2c8\ub2e4.<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. vi \/etc\/redis.conf<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \"> vi \/etc\/redis.conf\n\n# By default protected mode is enabled. You should disable it only if\n# you are sure you want clients from other hosts to connect to Redis\n# even if no authentication is configured.\nprotected-mode no\n<\/pre><\/div>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">systemctl restart redis\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">5. C# \uc2e4\ud589<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">\ub300\ud55c\ud56d\uacf5 \ucd9c\ubc1c 3\uc77c\uc804 : \uc218\uc218\ub8cc 120,000\uc6d0\n\ub300\ud55c\ud56d\uacf5 \ucd9c\ubc1c 4\uc77c\uc804 : \uc218\uc218\ub8cc 110,000\uc6d0\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">6. \ud328\uc2a4\uc6cc\ub4dc \uc124\uc815\ud558\uace0 protected-mode yes \ub85c \uc811\uc18d<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \"># vi \/etc\/redis.conf\n\nbind 0.0.0.0\n\nprotected-mode yes\n\nrequirepass pas232332\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">7. C# \uc18c\uc2a4  password<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">using System;\nusing StackExchange.Redis;\n\nnamespace ConsoleRedis\n{\n   class Program\n   {   \n      static void Main(string[] args)\n      {\n        try\n          {\n           ConnectionMultiplexer redis = ConnectionMultiplexer.Connect(\"***.***.***.***:6379,password=pas232332\");\n             if (redis.IsConnected)\n            {\n                IDatabase db = redis.GetDatabase();\n                db.StringSet(\"KE WITHIN 3DAYS BEFORE DEPARTURE KRW120000\", \"\ub300\ud55c\ud56d\uacf5 \ucd9c\ubc1c 3\uc77c\uc804 : \uc218\uc218\ub8cc 120,000\uc6d0\"); \n                db.StringSet(\"KE WITHIN 4DAYS BEFORE DEPARTURE KRW110000\", \"\ub300\ud55c\ud56d\uacf5 \ucd9c\ubc1c 4\uc77c\uc804 : \uc218\uc218\ub8cc 110,000\uc6d0\");\n\n                Console.WriteLine(db.StringGet(\"KE WITHIN 3DAYS BEFORE DEPARTURE KRW120000\"));\n                Console.WriteLine(db.StringGet(\"KE WITHIN 4DAYS BEFORE DEPARTURE KRW110000\"));\n\n                 redis.Close();\n             }\n\n        }\n        catch (Exception ex)\n        {\n           Console.WriteLine(ex.Message.ToString());\n         }\n\n       Console.ReadLine();\n\n      }\n   }\n}<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">7.1 C# \uc2e4\ud589<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">\ub300\ud55c\ud56d\uacf5 \ucd9c\ubc1c 3\uc77c\uc804 : \uc218\uc218\ub8cc 120,000\uc6d0\n\ub300\ud55c\ud56d\uacf5 \ucd9c\ubc1c 4\uc77c\uc804 : \uc218\uc218\ub8cc 110,000\uc6d0\n<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>1.NuGet \uc5d0\uc11c StackExchange.Redis \uc124\uce58 2.C# \uc18c\uc2a4 3.C# Error 4.telnet ***.***.***.*** 6379 CONFIG SET protected-mode no \ub85c \ubcc0\uacbd \ud558\ub77c\uace0 \ud569\ub2c8\ub2e4. 4. vi \/etc\/redis.conf 5. C# \uc2e4\ud589 <a class=\"mh-excerpt-more\" href=\"https:\/\/www.auctionpro.co.kr\/?p=7823\" title=\"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0\">[&#8230;]<\/a><\/p>\n<\/div>","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[242],"tags":[],"class_list":["post-7823","post","type-post","status-publish","format-standard","hentry","category-redis"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0 - AuctionPro<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.auctionpro.co.kr\/?p=7823\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0 - AuctionPro\" \/>\n<meta property=\"og:description\" content=\"1.NuGet \uc5d0\uc11c StackExchange.Redis \uc124\uce58 2.C# \uc18c\uc2a4 3.C# Error 4.telnet ***.***.***.*** 6379 CONFIG SET protected-mode no \ub85c \ubcc0\uacbd \ud558\ub77c\uace0 \ud569\ub2c8\ub2e4. 4. vi \/etc\/redis.conf 5. C# \uc2e4\ud589 [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.auctionpro.co.kr\/?p=7823\" \/>\n<meta property=\"og:site_name\" content=\"AuctionPro\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-08T08:57:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-02-06T08:57:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis.png\" \/>\n\t<meta property=\"og:image:width\" content=\"906\" \/>\n\t<meta property=\"og:image:height\" content=\"731\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"golgol\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"golgol\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823\"},\"author\":{\"name\":\"golgol\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"headline\":\"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0\",\"datePublished\":\"2022-08-08T08:57:00+00:00\",\"dateModified\":\"2023-02-06T08:57:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823\"},\"wordCount\":23,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/StackExchage_Redis.png\",\"articleSection\":[\"Redis\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823\",\"name\":\"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0 - AuctionPro\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/StackExchage_Redis.png\",\"datePublished\":\"2022-08-08T08:57:00+00:00\",\"dateModified\":\"2023-02-06T08:57:40+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823#primaryimage\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/StackExchage_Redis.png\",\"contentUrl\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/StackExchage_Redis.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=7823#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\",\"name\":\"AuctionPro\",\"description\":\"\uc625\uc158\ud504\ub85c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\",\"name\":\"golgol\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?author=6\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0 - AuctionPro","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.auctionpro.co.kr\/?p=7823","og_locale":"ko_KR","og_type":"article","og_title":"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0 - AuctionPro","og_description":"1.NuGet \uc5d0\uc11c StackExchange.Redis \uc124\uce58 2.C# \uc18c\uc2a4 3.C# Error 4.telnet ***.***.***.*** 6379 CONFIG SET protected-mode no \ub85c \ubcc0\uacbd \ud558\ub77c\uace0 \ud569\ub2c8\ub2e4. 4. vi \/etc\/redis.conf 5. C# \uc2e4\ud589 [...]","og_url":"https:\/\/www.auctionpro.co.kr\/?p=7823","og_site_name":"AuctionPro","article_published_time":"2022-08-08T08:57:00+00:00","article_modified_time":"2023-02-06T08:57:40+00:00","og_image":[{"width":906,"height":731,"url":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis.png","type":"image\/png"}],"author":"golgol","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"golgol","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"2\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.auctionpro.co.kr\/?p=7823#article","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=7823"},"author":{"name":"golgol","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"headline":"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0","datePublished":"2022-08-08T08:57:00+00:00","dateModified":"2023-02-06T08:57:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=7823"},"wordCount":23,"commentCount":0,"image":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=7823#primaryimage"},"thumbnailUrl":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis.png","articleSection":["Redis"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.auctionpro.co.kr\/?p=7823#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.auctionpro.co.kr\/?p=7823","url":"https:\/\/www.auctionpro.co.kr\/?p=7823","name":"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0 - AuctionPro","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=7823#primaryimage"},"image":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=7823#primaryimage"},"thumbnailUrl":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis.png","datePublished":"2022-08-08T08:57:00+00:00","dateModified":"2023-02-06T08:57:40+00:00","author":{"@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"breadcrumb":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=7823#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.auctionpro.co.kr\/?p=7823"]}]},{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/www.auctionpro.co.kr\/?p=7823#primaryimage","url":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis.png","contentUrl":"https:\/\/www.auctionpro.co.kr\/wp-content\/uploads\/2022\/08\/StackExchage_Redis.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.auctionpro.co.kr\/?p=7823#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/www.auctionpro.co.kr\/"},{"@type":"ListItem","position":2,"name":"C# \uc73c\ub85c Redis(\ub808\ub514\uc2a4) \uc5f0\uacb0"}]},{"@type":"WebSite","@id":"https:\/\/www.auctionpro.co.kr\/#website","url":"https:\/\/www.auctionpro.co.kr\/","name":"AuctionPro","description":"\uc625\uc158\ud504\ub85c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.auctionpro.co.kr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Person","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2","name":"golgol","url":"https:\/\/www.auctionpro.co.kr\/?author=6"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/7823","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=7823"}],"version-history":[{"count":0,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/7823\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7823"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=7823"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=7823"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}