{"id":718,"date":"2021-08-08T22:43:59","date_gmt":"2021-08-08T14:43:59","guid":{"rendered":"https:\/\/tech.fredpan.cn\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/"},"modified":"2021-08-08T22:47:17","modified_gmt":"2021-08-08T14:47:17","slug":"install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4","status":"publish","type":"post","link":"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/","title":{"rendered":"Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4"},"content":{"rendered":"[vc_row type=&#8221;in_container&#8221; full_screen_row_position=&#8221;middle&#8221; column_margin=&#8221;default&#8221; column_direction=&#8221;default&#8221; column_direction_tablet=&#8221;default&#8221; column_direction_phone=&#8221;default&#8221; scene_position=&#8221;center&#8221; text_color=&#8221;dark&#8221; text_align=&#8221;left&#8221; row_border_radius=&#8221;none&#8221; row_border_radius_applies=&#8221;bg&#8221; overlay_strength=&#8221;0.3&#8243; gradient_direction=&#8221;left_to_right&#8221; shape_divider_position=&#8221;bottom&#8221; bg_image_animation=&#8221;none&#8221;][vc_column column_padding=&#8221;no-extra-padding&#8221; column_padding_tablet=&#8221;inherit&#8221; column_padding_phone=&#8221;inherit&#8221; column_padding_position=&#8221;all&#8221; column_element_spacing=&#8221;default&#8221; background_color_opacity=&#8221;1&#8243; background_hover_color_opacity=&#8221;1&#8243; column_shadow=&#8221;none&#8221; column_border_radius=&#8221;none&#8221; column_link_target=&#8221;_self&#8221; gradient_direction=&#8221;left_to_right&#8221; overlay_strength=&#8221;0.3&#8243; width=&#8221;1\/1&#8243; tablet_width_inherit=&#8221;default&#8221; tablet_text_alignment=&#8221;default&#8221; phone_text_alignment=&#8221;default&#8221; bg_image_animation=&#8221;none&#8221; border_type=&#8221;simple&#8221; column_border_width=&#8221;none&#8221; column_border_style=&#8221;solid&#8221;][vc_column_text]\n<h2>Installing Redis on Ubuntu<\/h2>\n<p>Installing Redis<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo apt update<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo apt install redis-server<\/pre>\n<p>Use following command open configuration file:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo vim \/etc\/redis\/redis.conf<\/pre>\n<p>Change\/add the following:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">maxmemory 256mb\nmaxmemory-policy allkeys-lru<\/pre>\n<p>Use this command to declare an init system to manage Redis as a service, providing you with more control over its operation.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">supervised systemd<\/pre>\n<p>Restart the server to apply change:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo systemctl restart redis.service<\/pre>\n<p>Test your redis:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo systemctl status redis<\/pre>\n<p>you will get output similar to below:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">\u25cf redis-server.service - Advanced key-value store\n     Loaded: loaded (\/lib\/systemd\/system\/redis-server.service; enabled; vendor preset: enabled)\n     Active: active (running) since Wed 2021-06-16 00:01:41 CST; 20s ago\n       Docs: http:\/\/redis.io\/documentation,\n             man:redis-server(1)\n    Process: 7321 ExecStart=\/usr\/bin\/redis-server \/etc\/redis\/redis.conf (code=exited, status=0\/SUCCESS)\n   Main PID: 7332 (redis-server)\n      Tasks: 4 (limit: 1126)\n     Memory: 2.1M\n     CGroup: \/system.slice\/redis-server.service\n             \u2514\u25007332 \/usr\/bin\/redis-server 127.0.0.1:6379<\/pre>\n<p>Test that Redis is functioning correctly:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">redis-cli<\/pre>\n<p>If everything works fine, You will get a <code class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">pong<\/code> response once you type a <code class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">ping<\/code>.<\/p>\n<p>Let redis start on boot:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo systemctl enable redis-server<\/pre>\n<p>Up until now, Redis has been fully installed and should be functioning properly.<\/p>\n<h2>Use Redis on WordPress (Extra Step)<\/h2>\n<p>To make Redis can be used by WordPress, we need to install PHPRedis.<\/p>\n<p>Type the following commands one by one:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo apt-get install php-igbinary<\/pre>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo apt-get install php-redis<\/pre>\n<p>Use following command to open and edit php.ini file:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo vim \/etc\/php\/7.4\/apache2\/php.ini<\/pre>\n<p>and add the following somewhere in the file:<code class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">extension=redis.so<\/code><\/p>\n<p>Restart server to apply changes:<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">sudo systemctl restart apache2<\/pre>\n<p>&nbsp;<\/p>\n<h3>Reference\uff1a<\/h3>\n<p>https:\/\/stackoverflow.com\/questions\/46955555\/how-to-install-redis-extension-for-php-7[\/vc_column_text][\/vc_column][\/vc_row]\n","protected":false},"excerpt":{"rendered":"<p>[vc_row type=&#8221;in_container&#8221; full_screen_row_position=&#8221;middle&#8221; column_margin=&#8221;default&#8221; column_direction=&#8221;default&#8221; column_direction_tablet=&#8221;default&#8221; column_direction_phone=&#8221;default&#8221; scene_position=&#8221;center&#8221; text_color=&#8221;dark&#8221; text_align=&#8221;left&#8221; row_border_radius=&#8221;none&#8221; row_border_radius_applies=&#8221;bg&#8221; overlay_strength=&#8221;0.3&#8243; gradient_direction=&#8221;left_to_right&#8221; shape_divider_position=&#8221;bottom&#8221; bg_image_animation=&#8221;none&#8221;][vc_column column_padding=&#8221;no-extra-padding&#8221; column_padding_tablet=&#8221;inherit&#8221; column_padding_phone=&#8221;inherit&#8221; column_padding_position=&#8221;all&#8221; column_element_spacing=&#8221;default&#8221; background_color_opacity=&#8221;1&#8243; background_hover_color_opacity=&#8221;1&#8243; column_shadow=&#8221;none&#8221; column_border_radius=&#8221;none&#8221; column_link_target=&#8221;_self&#8221; gradient_direction=&#8221;left_to_right&#8221; overlay_strength=&#8221;0.3&#8243; width=&#8221;1\/1&#8243; tablet_width_inherit=&#8221;default&#8221;&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[61,107,12],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.10 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4 - Tech Blog | Arctic Kingdom<\/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:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4 - Tech Blog | Arctic Kingdom\" \/>\n<meta property=\"og:description\" content=\"[vc_row type=&#8221;in_container&#8221; full_screen_row_position=&#8221;middle&#8221; column_margin=&#8221;default&#8221; column_direction=&#8221;default&#8221; column_direction_tablet=&#8221;default&#8221; column_direction_phone=&#8221;default&#8221; scene_position=&#8221;center&#8221; text_color=&#8221;dark&#8221; text_align=&#8221;left&#8221; row_border_radius=&#8221;none&#8221; row_border_radius_applies=&#8221;bg&#8221; overlay_strength=&#8221;0.3&#8243; gradient_direction=&#8221;left_to_right&#8221; shape_divider_position=&#8221;bottom&#8221; bg_image_animation=&#8221;none&#8221;][vc_column column_padding=&#8221;no-extra-padding&#8221; column_padding_tablet=&#8221;inherit&#8221; column_padding_phone=&#8221;inherit&#8221; column_padding_position=&#8221;all&#8221; column_element_spacing=&#8221;default&#8221; background_color_opacity=&#8221;1&#8243; background_hover_color_opacity=&#8221;1&#8243; column_shadow=&#8221;none&#8221; column_border_radius=&#8221;none&#8221; column_link_target=&#8221;_self&#8221; gradient_direction=&#8221;left_to_right&#8221; overlay_strength=&#8221;0.3&#8243; width=&#8221;1\/1&#8243; tablet_width_inherit=&#8221;default&#8221;...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/\" \/>\n<meta property=\"og:site_name\" content=\"Tech Blog | Arctic Kingdom\" \/>\n<meta property=\"article:published_time\" content=\"2021-08-08T14:43:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-08T14:47:17+00:00\" \/>\n<meta name=\"author\" content=\"fredpan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"fredpan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/\"},\"author\":{\"name\":\"fredpan\",\"@id\":\"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/e895d0655e771d0e55a1644693ad4225\"},\"headline\":\"Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4\",\"datePublished\":\"2021-08-08T14:43:59+00:00\",\"dateModified\":\"2021-08-08T14:47:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/\"},\"wordCount\":298,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/e895d0655e771d0e55a1644693ad4225\"},\"articleSection\":[\"OS Related\",\"Web Server\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/\",\"url\":\"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/\",\"name\":\"Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4 - Tech Blog | Arctic Kingdom\",\"isPartOf\":{\"@id\":\"https:\/\/tech.fredpan.cn\/en\/#website\"},\"datePublished\":\"2021-08-08T14:43:59+00:00\",\"dateModified\":\"2021-08-08T14:47:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tech.fredpan.cn\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tech.fredpan.cn\/en\/#website\",\"url\":\"https:\/\/tech.fredpan.cn\/en\/\",\"name\":\"Tech Blog | Arctic Kingdom\",\"description\":\"Liren Pan's Tech Blog. For sharing professional knowledge in Software Development Engineering, specialized in backend development.\",\"publisher\":{\"@id\":\"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/e895d0655e771d0e55a1644693ad4225\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tech.fredpan.cn\/en\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/e895d0655e771d0e55a1644693ad4225\",\"name\":\"fredpan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/tech.fredpan.cn\/wp-content\/uploads\/sites\/2\/2021\/06\/LirenPan-Avatar-Taken-in-UofT-Myhal-Building.jpg\",\"contentUrl\":\"https:\/\/tech.fredpan.cn\/wp-content\/uploads\/sites\/2\/2021\/06\/LirenPan-Avatar-Taken-in-UofT-Myhal-Building.jpg\",\"width\":690,\"height\":704,\"caption\":\"fredpan\"},\"logo\":{\"@id\":\"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/129.226.182.46\"],\"url\":\"https:\/\/tech.fredpan.cn\/en\/author\/fredpan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4 - Tech Blog | Arctic Kingdom","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:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/","og_locale":"en_US","og_type":"article","og_title":"Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4 - Tech Blog | Arctic Kingdom","og_description":"[vc_row type=&#8221;in_container&#8221; full_screen_row_position=&#8221;middle&#8221; column_margin=&#8221;default&#8221; column_direction=&#8221;default&#8221; column_direction_tablet=&#8221;default&#8221; column_direction_phone=&#8221;default&#8221; scene_position=&#8221;center&#8221; text_color=&#8221;dark&#8221; text_align=&#8221;left&#8221; row_border_radius=&#8221;none&#8221; row_border_radius_applies=&#8221;bg&#8221; overlay_strength=&#8221;0.3&#8243; gradient_direction=&#8221;left_to_right&#8221; shape_divider_position=&#8221;bottom&#8221; bg_image_animation=&#8221;none&#8221;][vc_column column_padding=&#8221;no-extra-padding&#8221; column_padding_tablet=&#8221;inherit&#8221; column_padding_phone=&#8221;inherit&#8221; column_padding_position=&#8221;all&#8221; column_element_spacing=&#8221;default&#8221; background_color_opacity=&#8221;1&#8243; background_hover_color_opacity=&#8221;1&#8243; column_shadow=&#8221;none&#8221; column_border_radius=&#8221;none&#8221; column_link_target=&#8221;_self&#8221; gradient_direction=&#8221;left_to_right&#8221; overlay_strength=&#8221;0.3&#8243; width=&#8221;1\/1&#8243; tablet_width_inherit=&#8221;default&#8221;...","og_url":"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/","og_site_name":"Tech Blog | Arctic Kingdom","article_published_time":"2021-08-08T14:43:59+00:00","article_modified_time":"2021-08-08T14:47:17+00:00","author":"fredpan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"fredpan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/#article","isPartOf":{"@id":"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/"},"author":{"name":"fredpan","@id":"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/e895d0655e771d0e55a1644693ad4225"},"headline":"Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4","datePublished":"2021-08-08T14:43:59+00:00","dateModified":"2021-08-08T14:47:17+00:00","mainEntityOfPage":{"@id":"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/"},"wordCount":298,"commentCount":0,"publisher":{"@id":"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/e895d0655e771d0e55a1644693ad4225"},"articleSection":["OS Related","Web Server","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/","url":"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/","name":"Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4 - Tech Blog | Arctic Kingdom","isPartOf":{"@id":"https:\/\/tech.fredpan.cn\/en\/#website"},"datePublished":"2021-08-08T14:43:59+00:00","dateModified":"2021-08-08T14:47:17+00:00","breadcrumb":{"@id":"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tech.fredpan.cn\/en\/install-and-setup-redis-for-wordpress-on-ubuntu-20-04-with-php-7-4\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tech.fredpan.cn\/en\/"},{"@type":"ListItem","position":2,"name":"Install and setup Redis for WordPress on ubuntu 20.04 with php 7.4"}]},{"@type":"WebSite","@id":"https:\/\/tech.fredpan.cn\/en\/#website","url":"https:\/\/tech.fredpan.cn\/en\/","name":"Tech Blog | Arctic Kingdom","description":"Liren Pan's Tech Blog. For sharing professional knowledge in Software Development Engineering, specialized in backend development.","publisher":{"@id":"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/e895d0655e771d0e55a1644693ad4225"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tech.fredpan.cn\/en\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/e895d0655e771d0e55a1644693ad4225","name":"fredpan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/image\/","url":"https:\/\/tech.fredpan.cn\/wp-content\/uploads\/sites\/2\/2021\/06\/LirenPan-Avatar-Taken-in-UofT-Myhal-Building.jpg","contentUrl":"https:\/\/tech.fredpan.cn\/wp-content\/uploads\/sites\/2\/2021\/06\/LirenPan-Avatar-Taken-in-UofT-Myhal-Building.jpg","width":690,"height":704,"caption":"fredpan"},"logo":{"@id":"https:\/\/tech.fredpan.cn\/en\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/129.226.182.46"],"url":"https:\/\/tech.fredpan.cn\/en\/author\/fredpan\/"}]}},"_links":{"self":[{"href":"https:\/\/tech.fredpan.cn\/en\/wp-json\/wp\/v2\/posts\/718"}],"collection":[{"href":"https:\/\/tech.fredpan.cn\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tech.fredpan.cn\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tech.fredpan.cn\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tech.fredpan.cn\/en\/wp-json\/wp\/v2\/comments?post=718"}],"version-history":[{"count":15,"href":"https:\/\/tech.fredpan.cn\/en\/wp-json\/wp\/v2\/posts\/718\/revisions"}],"predecessor-version":[{"id":734,"href":"https:\/\/tech.fredpan.cn\/en\/wp-json\/wp\/v2\/posts\/718\/revisions\/734"}],"wp:attachment":[{"href":"https:\/\/tech.fredpan.cn\/en\/wp-json\/wp\/v2\/media?parent=718"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tech.fredpan.cn\/en\/wp-json\/wp\/v2\/categories?post=718"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tech.fredpan.cn\/en\/wp-json\/wp\/v2\/tags?post=718"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}