{"id":9064,"date":"2024-02-27T09:30:02","date_gmt":"2024-02-27T00:30:02","guid":{"rendered":"https:\/\/www.auctionpro.co.kr\/?p=9064"},"modified":"2024-03-12T11:17:29","modified_gmt":"2024-03-12T02:17:29","slug":"netcore6-0-memory-cache-simple","status":"publish","type":"post","link":"https:\/\/www.auctionpro.co.kr\/?p=9064","title":{"rendered":"NetCore6.0 Memory Cache simple"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">1. \ud544\uc694\ud55c \ud328\ud0a4\uc9c0 \uc124\uce58<\/h3>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">dotnet add package Microsoft.Extensions.Caching.Memory<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">2. \uba54\ubaa8\ub9ac \uce90\uc2dc \uc0ac\uc6a9\ud558\uae30<\/h3>\n\n\n\n<p>.NET Core\uc5d0\uc11c \uba54\ubaa8\ub9ac \uce90\uc2dc\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574 <code>IMemoryCache<\/code> \uc778\ud130\ud398\uc774\uc2a4\ub97c \ud65c\uc6a9\ud569\ub2c8\ub2e4. \uc774 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc0ac\uc6a9\ud558\ub824\uba74 \uba3c\uc800 \uc11c\ube44\uc2a4 \ucee8\ud14c\uc774\ub108\uc5d0 \ub4f1\ub85d\ud574\uc57c \ud569\ub2c8\ub2e4. \uc774 \uc791\uc5c5\uc740 \uc8fc\ub85c <code>Startup.cs<\/code> \ud30c\uc77c\uc758 <code>ConfigureServices<\/code> \uba54\uc11c\ub4dc\uc5d0\uc11c \uc774\ub8e8\uc5b4\uc9d1\ub2c8\ub2e4.<\/p>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:c# decode:true \">public void ConfigureServices(IServiceCollection services)\n{\n    services.AddMemoryCache();\n    \/\/ \ub2e4\ub978 \uc11c\ube44\uc2a4 \uad6c\uc131\n}<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">3. \uce90\uc2dc\uc5d0 \ub370\uc774\ud130 \uc800\uc7a5 \ubc0f \uac80\uc0c9<\/h3>\n\n\n\n<p>\uce90\uc2dc\uc5d0 \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uac70\ub098 \uac80\uc0c9\ud558\uae30 \uc704\ud574 <code>IMemoryCache<\/code> \uc778\uc2a4\ud134\uc2a4\uac00 \ud544\uc694\ud569\ub2c8\ub2e4. \uc774 \uc778\uc2a4\ud134\uc2a4\ub294 \uc0dd\uc131\uc790 \uc8fc\uc785\uc744 \ud1b5\ud574 \uc5bb\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<p>\ub2e4\uc74c\uc740 \uac04\ub2e8\ud55c \ucee8\ud2b8\ub864\ub7ec \uc608\uc2dc\uc785\ub2c8\ub2e4. \uc5ec\uae30\uc11c\ub294 \uba54\ubaa8\ub9ac \uce90\uc2dc\ub97c \uc0ac\uc6a9\ud558\uc5ec \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uace0 \uac80\uc0c9\ud558\ub294 \ubc29\ubc95\uc744 \ubcf4\uc5ec\uc90d\ub2c8\ub2e4.<\/p>\n\n\n\n<div class=\"wp-block-urvanov-syntax-highlighter-code-block\"><pre class=\"lang:vim decode:true \">using Microsoft.AspNetCore.Mvc;\nusing Microsoft.Extensions.Caching.Memory;\n\npublic class CacheSampleController : ControllerBase\n{\n    private readonly IMemoryCache _memoryCache;\n\n    public CacheSampleController(IMemoryCache memoryCache)\n    {\n        _memoryCache = memoryCache;\n    }\n\n    [HttpGet(\"get-from-cache\")]\n    public IActionResult GetFromCache()\n    {\n        \/\/ \uce90\uc2dc \ud0a4\n        string cacheKey = \"my-sample-key\";\n        \/\/ \uce90\uc2dc\uc5d0\uc11c \ub370\uc774\ud130 \uac80\uc0c9\n        if (_memoryCache.TryGetValue(cacheKey, out string cachedData))\n        {\n            return Ok(cachedData);\n        }\n\n        \/\/ \uce90\uc2dc\uc5d0 \ub370\uc774\ud130\uac00 \uc5c6\ub294 \uacbd\uc6b0, \ub370\uc774\ud130 \uc0dd\uc131 \ubc0f \uce90\uc2dc\uc5d0 \uc800\uc7a5\n        string newData = \"This is my data to cache\";\n        _memoryCache.Set(cacheKey, newData, TimeSpan.FromMinutes(5)); \/\/ 5\ubd84 \ub3d9\uc548 \uce90\uc2dc \uc720\uc9c0\n\n        return Ok(newData);\n    }\n}<\/pre><\/div>\n\n\n\n<p>CacheSampleController \ud074\ub798\uc2a4\uc758 \uc0dd\uc131\uc790\uc5d0\uc11c IMemoryCache \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc8fc\uc785\ubc1b\ub294 \uc774\uc720\ub294 \uc758\uc874\uc131 \uc8fc\uc785(Dependency Injection)\uc744 \ud1b5\ud574 \uce90\uc2dc\ub97c \uad00\ub9ac\ud558\uae30 \uc704\ud568\uc785\ub2c8\ub2e4.<br>\uc758\uc874\uc131 \uc8fc\uc785\uc740 \ud074\ub798\uc2a4\uac00 \uc9c1\uc811 \ud544\uc694\ud55c \uac1d\uccb4\ub97c \uc0dd\uc131\ud558\uac70\ub098 \uad00\ub9ac\ud558\ub294 \ub300\uc2e0 \uc678\ubd80\uc5d0\uc11c \uc8fc\uc785\ubc1b\uc544 \uc0ac\uc6a9\ud560 \uc218 \uc788\ub3c4\ub85d \ud558\ub294 \ub514\uc790\uc778 \ud328\ud134\uc785\ub2c8\ub2e4.<br>IMemoryCache \uc778\ud130\ud398\uc774\uc2a4\ub294 ASP.NET Core\uc5d0\uc11c \uc81c\uacf5\ud558\ub294 \uba54\ubaa8\ub9ac \uae30\ubc18 \uce90\uc2f1\uc744 \uc704\ud55c \uc778\ud130\ud398\uc774\uc2a4\uc785\ub2c8\ub2e4.<br>\uc774 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc0ac\uc6a9\ud558\uba74 \uce90\uc2dc\uc5d0 \ub370\uc774\ud130\ub97c \uc800\uc7a5\ud558\uace0 \uac80\uc0c9\ud558\ub294 \uae30\ub2a5\uc744 \uc190\uc27d\uac8c \uad6c\ud604\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<br><br>\uc0dd\uc131\uc790\ub97c \ud1b5\ud574 IMemoryCache \uc778\ud130\ud398\uc774\uc2a4\uc758 \uad6c\ud604\uccb4\ub97c \uc8fc\uc785\ubc1b\ub294 \uc774\uc720\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>\uc758\uc874\uc131 \uc5ed\uc804 \uc6d0\uce59(Dependency Inversion Principle) \uc900\uc218: \ud074\ub798\uc2a4\uac00 \uc9c1\uc811 \uce90\uc2dc\ub97c \uc0dd\uc131\ud558\uac70\ub098 \uad00\ub9ac\ud558\uc9c0 \uc54a\uace0 \uc678\ubd80\uc5d0\uc11c \uc8fc\uc785\ubc1b\uc544 \uc0ac\uc6a9\ud568\uc73c\ub85c\uc368 \ub290\uc2a8\ud55c \uacb0\ud569\uc744 \uc720\uc9c0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<br>\uc774\ub294 \ucf54\ub4dc\uc758 \uc720\uc5f0\uc131\uacfc \ud14c\uc2a4\ud2b8 \uc6a9\uc774\uc131\uc744 \ud5a5\uc0c1\uc2dc\ud0b5\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\ub2e8\uc77c \ucc45\uc784 \uc6d0\uce59(Single Responsibility Principle) \uc900\uc218: CacheSampleController \ud074\ub798\uc2a4\ub294 \uce90\uc2f1 \ub85c\uc9c1\uc5d0\ub9cc \uc9d1\uc911\ud558\uace0, \uce90\uc2dc \uac1d\uccb4 \uc790\uccb4\ub97c \uc0dd\uc131\ud558\uac70\ub098 \uad00\ub9ac\ud558\ub294 \ucc45\uc784\uc744 \uac00\uc9c0\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.<br>\uc774\ub294 \ud074\ub798\uc2a4\uc758 \uae30\ub2a5\uc744 \ub2e8\uc21c\ud654\ud558\uace0 \uc720\uc9c0\ubcf4\uc218\ub97c \uc6a9\uc774\ud558\uac8c \ud569\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\ud14c\uc2a4\ud2b8 \uc6a9\uc774\uc131: \uc758\uc874\uc131 \uc8fc\uc785\uc744 \ud1b5\ud574 \uce90\uc2dc \uac1d\uccb4\ub97c \uc8fc\uc785\ubc1b\uae30 \ub54c\ubb38\uc5d0 \ud14c\uc2a4\ud2b8\uc5d0\uc11c \uc27d\uac8c \ubaa8\uc758(Mock) \uac1d\uccb4\ub97c \uc8fc\uc785\ud558\uc5ec \ud14c\uc2a4\ud2b8\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub294 \ub2e8\uc704 \ud14c\uc2a4\ud2b8 \uc791\uc131\uc744 \uc6a9\uc774\ud558\uac8c \ud569\ub2c8\ub2e4.<\/li>\n\n\n\n<li>\uc7ac\uc0ac\uc6a9\uc131: IMemoryCache \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc8fc\uc785\ubc1b\uae30 \ub54c\ubb38\uc5d0 \uce90\uc2dc \uac1d\uccb4\uc758 \uad6c\uccb4\uc801\uc778 \uad6c\ud604\uc5d0 \uc885\uc18d\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.<\/li>\n<\/ol>\n\n\n\n<p><br>\ub530\ub77c\uc11c \uc774 \ud074\ub798\uc2a4\ub294 \ub2e4\ub978 \uc885\ub958\uc758 \uce90\uc2dc \uad6c\ud604\uccb4\ub85c \uc27d\uac8c \uad50\uccb4\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<\/p>\n\n\n\n<p>Dependency Injection&#8221;\uc758 \ub77c\ud2f4\uc5b4 \uc5b4\uc6d0\uc740 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4:<\/p>\n\n\n\n<p>&#8220;Dependency&#8221;\ub294 &#8220;dependere&#8221;\uc5d0\uc11c \uc720\ub798\ub418\uc5c8\uc73c\uba70, &#8220;\uc758\uc874&#8221;\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4.<br>&#8220;Injection&#8221;\uc740 &#8220;injectio&#8221;\uc5d0\uc11c \uc720\ub798\ub418\uc5c8\uc73c\uba70, &#8220;\uc8fc\uc785&#8221;\uc744 \uc758\ubbf8\ud569\ub2c8\ub2e4.<br>\ub530\ub77c\uc11c &#8220;Dependency Injection&#8221;\uc740 &#8220;\uc758\uc874 \uc8fc\uc785&#8221;\uc774\ub77c\ub294 \ub73b\uc785\ub2c8\ub2e4.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><\/ol>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>1. \ud544\uc694\ud55c \ud328\ud0a4\uc9c0 \uc124\uce58 2. \uba54\ubaa8\ub9ac \uce90\uc2dc \uc0ac\uc6a9\ud558\uae30 .NET Core\uc5d0\uc11c \uba54\ubaa8\ub9ac \uce90\uc2dc\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574 IMemoryCache \uc778\ud130\ud398\uc774\uc2a4\ub97c \ud65c\uc6a9\ud569\ub2c8\ub2e4. \uc774 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc0ac\uc6a9\ud558\ub824\uba74 \uba3c\uc800 \uc11c\ube44\uc2a4 \ucee8\ud14c\uc774\ub108\uc5d0 \ub4f1\ub85d\ud574\uc57c \ud569\ub2c8\ub2e4. <a class=\"mh-excerpt-more\" href=\"https:\/\/www.auctionpro.co.kr\/?p=9064\" title=\"NetCore6.0 Memory Cache simple\">[&#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":[237],"tags":[],"class_list":["post-9064","post","type-post","status-publish","format-standard","hentry","category-memory-cache"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>NetCore6.0 Memory Cache simple - 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=9064\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"NetCore6.0 Memory Cache simple - AuctionPro\" \/>\n<meta property=\"og:description\" content=\"1. \ud544\uc694\ud55c \ud328\ud0a4\uc9c0 \uc124\uce58 2. \uba54\ubaa8\ub9ac \uce90\uc2dc \uc0ac\uc6a9\ud558\uae30 .NET Core\uc5d0\uc11c \uba54\ubaa8\ub9ac \uce90\uc2dc\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574 IMemoryCache \uc778\ud130\ud398\uc774\uc2a4\ub97c \ud65c\uc6a9\ud569\ub2c8\ub2e4. \uc774 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc0ac\uc6a9\ud558\ub824\uba74 \uba3c\uc800 \uc11c\ube44\uc2a4 \ucee8\ud14c\uc774\ub108\uc5d0 \ub4f1\ub85d\ud574\uc57c \ud569\ub2c8\ub2e4. [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.auctionpro.co.kr\/?p=9064\" \/>\n<meta property=\"og:site_name\" content=\"AuctionPro\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-27T00:30:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-12T02:17:29+00:00\" \/>\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=\"1\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=9064#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9064\"},\"author\":{\"name\":\"golgol\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"headline\":\"NetCore6.0 Memory Cache simple\",\"datePublished\":\"2024-02-27T00:30:02+00:00\",\"dateModified\":\"2024-03-12T02:17:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9064\"},\"wordCount\":32,\"commentCount\":0,\"articleSection\":[\"Memory Cache\"],\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9064#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9064\",\"url\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9064\",\"name\":\"NetCore6.0 Memory Cache simple - AuctionPro\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#website\"},\"datePublished\":\"2024-02-27T00:30:02+00:00\",\"dateModified\":\"2024-03-12T02:17:29+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/#\\\/schema\\\/person\\\/d3dbae599b06cd55f5b14a3e2116f7a2\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9064#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9064\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/?p=9064#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\\\/\\\/www.auctionpro.co.kr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"NetCore6.0 Memory Cache simple\"}]},{\"@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":"NetCore6.0 Memory Cache simple - 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=9064","og_locale":"ko_KR","og_type":"article","og_title":"NetCore6.0 Memory Cache simple - AuctionPro","og_description":"1. \ud544\uc694\ud55c \ud328\ud0a4\uc9c0 \uc124\uce58 2. \uba54\ubaa8\ub9ac \uce90\uc2dc \uc0ac\uc6a9\ud558\uae30 .NET Core\uc5d0\uc11c \uba54\ubaa8\ub9ac \uce90\uc2dc\ub97c \uc0ac\uc6a9\ud558\uae30 \uc704\ud574 IMemoryCache \uc778\ud130\ud398\uc774\uc2a4\ub97c \ud65c\uc6a9\ud569\ub2c8\ub2e4. \uc774 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uc0ac\uc6a9\ud558\ub824\uba74 \uba3c\uc800 \uc11c\ube44\uc2a4 \ucee8\ud14c\uc774\ub108\uc5d0 \ub4f1\ub85d\ud574\uc57c \ud569\ub2c8\ub2e4. [...]","og_url":"https:\/\/www.auctionpro.co.kr\/?p=9064","og_site_name":"AuctionPro","article_published_time":"2024-02-27T00:30:02+00:00","article_modified_time":"2024-03-12T02:17:29+00:00","author":"golgol","twitter_card":"summary_large_image","twitter_misc":{"\uae00\uc4f4\uc774":"golgol","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.auctionpro.co.kr\/?p=9064#article","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=9064"},"author":{"name":"golgol","@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"headline":"NetCore6.0 Memory Cache simple","datePublished":"2024-02-27T00:30:02+00:00","dateModified":"2024-03-12T02:17:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=9064"},"wordCount":32,"commentCount":0,"articleSection":["Memory Cache"],"inLanguage":"ko-KR","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.auctionpro.co.kr\/?p=9064#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.auctionpro.co.kr\/?p=9064","url":"https:\/\/www.auctionpro.co.kr\/?p=9064","name":"NetCore6.0 Memory Cache simple - AuctionPro","isPartOf":{"@id":"https:\/\/www.auctionpro.co.kr\/#website"},"datePublished":"2024-02-27T00:30:02+00:00","dateModified":"2024-03-12T02:17:29+00:00","author":{"@id":"https:\/\/www.auctionpro.co.kr\/#\/schema\/person\/d3dbae599b06cd55f5b14a3e2116f7a2"},"breadcrumb":{"@id":"https:\/\/www.auctionpro.co.kr\/?p=9064#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.auctionpro.co.kr\/?p=9064"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.auctionpro.co.kr\/?p=9064#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/www.auctionpro.co.kr\/"},{"@type":"ListItem","position":2,"name":"NetCore6.0 Memory Cache simple"}]},{"@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\/9064","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=9064"}],"version-history":[{"count":0,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/9064\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9064"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=9064"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.auctionpro.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=9064"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}