{"id":78918,"date":"2024-03-20T20:28:17","date_gmt":"2024-03-20T11:28:17","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/"},"modified":"2025-08-12T04:30:44","modified_gmt":"2025-08-11T19:30:44","slug":"%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/","title":{"rendered":"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b"},"content":{"rendered":"<p>Python\u3067\u306ffcntl\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u5229\u7528\u3057\u3066\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u3089\u308c\u307e\u3059\u3002\u4ee5\u4e0b\u306f\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u3066\u89e3\u9664\u3059\u308b\u65b9\u6cd5\u306e\u7c21\u5358\u306a\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u3059\u3002<\/p>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> fcntl\r\n\r\n<span class=\"hljs-keyword\">def<\/span> <span class=\"hljs-title function_\">lock_file<\/span>(<span class=\"hljs-params\">file<\/span>):\r\n    <span class=\"hljs-keyword\">try<\/span>:\r\n        fcntl.flock(file, fcntl.LOCK_EX | fcntl.LOCK_NB)\r\n        <span class=\"hljs-keyword\">return<\/span> <span class=\"hljs-literal\">True<\/span>\r\n    <span class=\"hljs-keyword\">except<\/span> BlockingIOError:\r\n        <span class=\"hljs-keyword\">return<\/span> <span class=\"hljs-literal\">False<\/span>\r\n\r\n<span class=\"hljs-keyword\">def<\/span> <span class=\"hljs-title function_\">unlock_file<\/span>(<span class=\"hljs-params\">file<\/span>):\r\n    fcntl.flock(file, fcntl.LOCK_UN)\r\n\r\n<span class=\"hljs-comment\"># \u6253\u5f00\u6587\u4ef6<\/span>\r\nfile = <span class=\"hljs-built_in\">open<\/span>(<span class=\"hljs-string\">'example.txt'<\/span>, <span class=\"hljs-string\">'w'<\/span>)\r\n\r\n<span class=\"hljs-comment\"># \u5c1d\u8bd5\u7ed9\u6587\u4ef6\u4e0a\u9501<\/span>\r\n<span class=\"hljs-keyword\">if<\/span> lock_file(file):\r\n    <span class=\"hljs-built_in\">print<\/span>(<span class=\"hljs-string\">\"\u6587\u4ef6\u5df2\u4e0a\u9501\"<\/span>)\r\n    <span class=\"hljs-comment\"># \u6267\u884c\u6587\u4ef6\u64cd\u4f5c<\/span>\r\n    file.write(<span class=\"hljs-string\">\"Hello, World!\"<\/span>)\r\n    <span class=\"hljs-comment\"># \u89e3\u9501\u6587\u4ef6<\/span>\r\n    unlock_file(file)\r\n    <span class=\"hljs-built_in\">print<\/span>(<span class=\"hljs-string\">\"\u6587\u4ef6\u5df2\u89e3\u9501\"<\/span>)\r\n<span class=\"hljs-keyword\">else<\/span>:\r\n    <span class=\"hljs-built_in\">print<\/span>(<span class=\"hljs-string\">\"\u6587\u4ef6\u5df2\u88ab\u9501\u5b9a\uff0c\u65e0\u6cd5\u64cd\u4f5c\"<\/span>)\r\n<\/code><\/pre>\n<p>\u4e0a\u306e\u30b5\u30f3\u30d7\u30eb\u3067\u306f\u3001`lock_file` \u95a2\u6570\u306f\u30d5\u30a1\u30a4\u30eb\u306e\u30ed\u30c3\u30af\u3092\u8a66\u884c\u3057\u3066\u3044\u307e\u3059\u3002`fcntl.flock()` \u95a2\u6570\u306e\u7b2c 1 \u5f15\u6570\u306f\u30ed\u30c3\u30af\u3059\u308b\u30d5\u30a1\u30a4\u30eb \u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3067\u3001\u7b2c 2 \u5f15\u6570\u306f\u30ed\u30c3\u30af\u306e\u7a2e\u985e\u3067\u3059\u3002`fcntl.LOCK_EX` \u306f\u6392\u4ed6\u30ed\u30c3\u30af\uff08\u4ed6\u306e\u30d7\u30ed\u30bb\u30b9\u306f\u30d5\u30a1\u30a4\u30eb\u306b\u30a2\u30af\u30bb\u30b9\u3067\u304d\u306a\u3044\uff09\u3092\u610f\u5473\u3057\u3001`fcntl.LOCK_NB` \u306f\u975e\u30d6\u30ed\u30c3\u30ad\u30f3\u30b0 \u30e2\u30fc\u30c9\uff08\u30d5\u30a1\u30a4\u30eb\u304c\u3059\u3067\u306b\u30ed\u30c3\u30af\u3055\u308c\u3066\u3044\u308b\u5834\u5408\u3001`fcntl.flock()` \u95a2\u6570\u306f\u5f85\u6a5f\u3059\u308b\u306e\u3067\u306f\u306a\u304f\u305f\u3060\u3061\u306b\u8fd4\u308a\u307e\u3059\uff09\u3092\u610f\u5473\u3057\u307e\u3059\u3002\u30ed\u30c3\u30af\u304c\u6210\u529f\u3057\u305f\u5834\u5408\u3001\u95a2\u6570\u306f `True` \u3092\u8fd4\u3057\u3001\u305d\u3046\u3067\u306a\u3044\u5834\u5408\u306f `False` \u3092\u8fd4\u3057\u307e\u3059\u3002<\/p>\n<p>\u30d5\u30a1\u30a4\u30eb\u30ed\u30c3\u30af\u306e\u89e3\u9664\u306f\u3001unlock_file \u95a2\u6570\u3092\u4f7f\u7528\u3057\u3001fcntl.LOCK_UN \u304c\u89e3\u9664\u3092\u793a\u3057\u307e\u3059\u3002<\/p>\n<p>\u5b9f\u904b\u7528\u6642\u306b\u306f\u3001\u5fc5\u8981\u306b\u5fdc\u3058\u3066\u9069\u5207\u306a\u30a8\u30e9\u30fc\u30fb\u4f8b\u5916\u51e6\u7406\u3092\u884c\u3046\u3053\u3068<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Python\u3067\u306ffcntl\u30e2\u30b8\u30e5\u30fc\u30eb\u3092\u5229\u7528\u3057\u3066\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u3089\u308c\u307e\u3059\u3002\u4ee5\u4e0b\u306f\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u3066\u89e3\u9664\u3059\u308b\u65b9\u6cd5\u306e\u7c21\u5358\u306a\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u3059\u3002 import fcntl def lock_file(file): t [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[26,61],"class_list":["post-78918","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-26","tag-61"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\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.silicloud.com\/ja\/blog\/\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\" \/>\n<meta property=\"og:description\" content=\"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-20T11:28:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-11T19:30:44+00:00\" \/>\n<meta name=\"author\" content=\"\u967d, \u5411\u5b87\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u967d, \u5411\u5b87\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"2\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/\",\"name\":\"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-20T11:28:17+00:00\",\"dateModified\":\"2025-08-11T19:30:44+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/4aef6196128551a0f5d66db46c42866c\"},\"description\":\"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/4aef6196128551a0f5d66db46c42866c\",\"name\":\"\u967d, \u5411\u5b87\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g\",\"caption\":\"\u967d, \u5411\u5b87\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/hinatasora\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b - Blog - Silicon Cloud","description":"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","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.silicloud.com\/ja\/blog\/\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\/","og_locale":"ja_JP","og_type":"article","og_title":"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b","og_description":"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-20T11:28:17+00:00","article_modified_time":"2025-08-11T19:30:44+00:00","author":"\u967d, \u5411\u5b87","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u967d, \u5411\u5b87","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"2\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/","name":"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-20T11:28:17+00:00","dateModified":"2025-08-11T19:30:44+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/4aef6196128551a0f5d66db46c42866c"},"description":"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"\u30d5\u30a1\u30a4\u30eb\u306b\u30ed\u30c3\u30af\u3092\u304b\u3051\u308b"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/4aef6196128551a0f5d66db46c42866c","name":"\u967d, \u5411\u5b87","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ad96b120e219751fa368cbd7d2c48ca01b59185e6ed394449bac72614a760bf3?s=96&d=mm&r=g","caption":"\u967d, \u5411\u5b87"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/hinatasora\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/%e3%83%95%e3%82%a1%e3%82%a4%e3%83%ab%e3%81%ab%e3%83%ad%e3%83%83%e3%82%af%e3%82%92%e3%81%8b%e3%81%91%e3%82%8b\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/78918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=78918"}],"version-history":[{"count":1,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/78918\/revisions"}],"predecessor-version":[{"id":186418,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/78918\/revisions\/186418"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=78918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=78918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=78918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}