{"id":706,"date":"2020-09-15T07:23:00","date_gmt":"2020-09-15T05:23:00","guid":{"rendered":"https:\/\/schaal-it.dev\/en\/?p=706"},"modified":"2023-11-28T07:51:09","modified_gmt":"2023-11-28T06:51:09","slug":"redis-support-with-ispconfig","status":"publish","type":"post","link":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/","title":{"rendered":"Redis Support with ISPConfig"},"content":{"rendered":"\n<p>Redis is an in-memory database and is therefore stored in memory. The queries of such a database are much faster than queries of a database stored on the hard disk. With Redis it is possible to get even more performance out of a website. For example, you can save the sessions of a website in Redis, which has a very positive effect on the loading time.<\/p>\n\n\n\n<p>To save the PHP sessions into a Redis instance you just have to create a Redis instance for the website in ISPConfig and then add the &#8220;Session Save Handler&#8221; for Redis to the php.ini settings. After that you might have to change the configuration of your CMS or store system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Possible settings for a Redis instance<\/h2>\n\n\n\n<p>The Redis instance set up and secured for a web page is permanently connected to the web page and can have the following values:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Max. 10 databases<\/li>\n\n\n\n<li>Max. Database size: 50% of the available memory on the server is available.<\/li>\n\n\n\n<li>Individual MaxMemory Policy to decide how Redis behaves when memory is full.<\/li>\n\n\n\n<li>Automatic allocation of a port<\/li>\n\n\n\n<li>Automatic assignment of a password<\/li>\n\n\n\n<li>Access to log files<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Set up Redis for a website<\/h2>\n\n\n\n<p>On your managed server open the Sites and click &#8220;Redis Databases&#8221; and click on the button &#8220;Create a new Redis-Instance&#8221;.<\/p>\n\n\n\n<p>Select the appropriate website and give the instance a name. Additionally you can set the maximum number of databases and the total size of the instance.<br>The size is limited to a maximum of 50% of the working memory. If you enter &#8220;-1&#8221; here, the maximum value is automatically taken. Please note that other services on your server also need memory.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1001\" height=\"487\" src=\"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis01.jpg\" alt=\"\" class=\"wp-image-707\" srcset=\"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis01.jpg 1001w, https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis01-300x146.jpg 300w, https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis01-768x374.jpg 768w\" sizes=\"(max-width: 1001px) 100vw, 1001px\" \/><\/figure>\n<\/div>\n\n\n<h3 class=\"wp-block-heading\">Redis Policies<\/h3>\n\n\n\n<p>Under Redis policy you can define different rules how the Redis database reacts when its memory is exhausted.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>noeviction<\/strong> return errors when the memory limit was reached and the client is trying to execute commands that could result in more memory to be used (most write commands, but DEL and a few more exceptions).<\/li>\n\n\n\n<li><strong>allkeys-lru<\/strong> evict keys by trying to remove the less recently used (LRU) keys first, in order to make space for the new data added.<\/li>\n\n\n\n<li><strong>volatile-lru<\/strong> evict keys by trying to remove the less recently used (LRU) keys first, but only among keys that have an expire set, in order to make space for the new data added.<\/li>\n\n\n\n<li><strong>allkeys-random<\/strong> evict keys randomly in order to make space for the new data added.<\/li>\n\n\n\n<li><strong>volatile-random<\/strong> evict keys randomly in order to make space for the new data added, but only evict keys with an <em>expire set<\/em>.<\/li>\n\n\n\n<li><strong>volatile-ttl<\/strong> evict keys with an <em>expire set<\/em>, and try to evict keys with a shorter time to live (TTL) first, in order to make space for the new data added.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Edit Redis instance<\/h2>\n\n\n\n<p>If you have created a Redis instance, you can for example change the policy and the database size at any time. You only have to open the corresponding instance in ISPConfig.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"989\" height=\"726\" src=\"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis02.jpg\" alt=\"\" class=\"wp-image-708\" srcset=\"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis02.jpg 989w, https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis02-300x220.jpg 300w, https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis02-768x564.jpg 768w\" sizes=\"(max-width: 989px) 100vw, 989px\" \/><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">Create PHP directive<\/h2>\n\n\n\n<p>If you want PHP to use the Redis database as session storage, you have to enter as in the individual php.ini settings. You can use ISPConfig for this &#8211; if nothing else is set, PHP will use the database 0 of the Redis instance for session storage.<\/p>\n\n\n\n<p>In ISPConfig open the website and select the tab &#8220;Options&#8221;. Under &#8220;Custom php.ini settings&#8221; you only have to click on &#8220;[Redis Session Save Handler]&#8221;. Now the database 0 of the Redis instance is entered for PHP sessions.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img decoding=\"async\" width=\"855\" height=\"344\" src=\"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis03.jpg\" alt=\"\" class=\"wp-image-709\" srcset=\"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis03.jpg 855w, https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis03-300x121.jpg 300w, https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis03-768x309.jpg 768w\" sizes=\"(max-width: 855px) 100vw, 855px\" \/><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">More<\/h2>\n\n\n\n<p><a href=\"https:\/\/redis.io\/documentation\" target=\"_blank\" rel=\"noreferrer noopener\">Redis Documentation<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Redis is an in-memory database and is therefore stored in memory. The queries of such a database are much faster than queries of a database&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-706","post","type-post","status-publish","format-standard","hentry","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.9 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Redis Support with ISPConfig<\/title>\n<meta name=\"description\" content=\"Find out more about how you can set up and use Redis Databases with ISPConfig. Reduce loading times with Redis.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Redis Support with ISPConfig\" \/>\n<meta property=\"og:description\" content=\"Find out more about how you can set up and use Redis Databases with ISPConfig. Reduce loading times with Redis.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/\" \/>\n<meta property=\"og:site_name\" content=\"schaal @it UG\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-15T05:23:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-28T06:51:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis01.jpg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#\\\/schema\\\/person\\\/97112bea38186367c303945fe91f1101\"},\"headline\":\"Redis Support with ISPConfig\",\"datePublished\":\"2020-09-15T05:23:00+00:00\",\"dateModified\":\"2023-11-28T06:51:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/\"},\"wordCount\":580,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/redis01.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/\",\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/\",\"name\":\"Redis Support with ISPConfig\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/redis01.jpg\",\"datePublished\":\"2020-09-15T05:23:00+00:00\",\"dateModified\":\"2023-11-28T06:51:09+00:00\",\"description\":\"Find out more about how you can set up and use Redis Databases with ISPConfig. Reduce loading times with Redis.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/#primaryimage\",\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/redis01.jpg\",\"contentUrl\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/redis01.jpg\",\"width\":1001,\"height\":487},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/blog\\\/redis-support-with-ispconfig\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Redis Support with ISPConfig\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/\",\"name\":\"schaal @it UG\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#organization\",\"name\":\"schaal@it UG\",\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/cropped-schaal_it_logo2_2_-_250px.png\",\"contentUrl\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2023\\\/10\\\/cropped-schaal_it_logo2_2_-_250px.png\",\"width\":250,\"height\":42,\"caption\":\"schaal@it UG\"},\"image\":{\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/#\\\/schema\\\/person\\\/97112bea38186367c303945fe91f1101\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/schaal-it.dev\"],\"url\":\"https:\\\/\\\/schaal-it.dev\\\/en\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Redis Support with ISPConfig","description":"Find out more about how you can set up and use Redis Databases with ISPConfig. Reduce loading times with Redis.","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:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/","og_locale":"en_US","og_type":"article","og_title":"Redis Support with ISPConfig","og_description":"Find out more about how you can set up and use Redis Databases with ISPConfig. Reduce loading times with Redis.","og_url":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/","og_site_name":"schaal @it UG","article_published_time":"2020-09-15T05:23:00+00:00","article_modified_time":"2023-11-28T06:51:09+00:00","og_image":[{"url":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis01.jpg","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/#article","isPartOf":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/"},"author":{"name":"admin","@id":"https:\/\/schaal-it.dev\/en\/#\/schema\/person\/97112bea38186367c303945fe91f1101"},"headline":"Redis Support with ISPConfig","datePublished":"2020-09-15T05:23:00+00:00","dateModified":"2023-11-28T06:51:09+00:00","mainEntityOfPage":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/"},"wordCount":580,"commentCount":0,"publisher":{"@id":"https:\/\/schaal-it.dev\/en\/#organization"},"image":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/#primaryimage"},"thumbnailUrl":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis01.jpg","articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/","url":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/","name":"Redis Support with ISPConfig","isPartOf":{"@id":"https:\/\/schaal-it.dev\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/#primaryimage"},"image":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/#primaryimage"},"thumbnailUrl":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis01.jpg","datePublished":"2020-09-15T05:23:00+00:00","dateModified":"2023-11-28T06:51:09+00:00","description":"Find out more about how you can set up and use Redis Databases with ISPConfig. Reduce loading times with Redis.","breadcrumb":{"@id":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/#primaryimage","url":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis01.jpg","contentUrl":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/redis01.jpg","width":1001,"height":487},{"@type":"BreadcrumbList","@id":"https:\/\/schaal-it.dev\/en\/blog\/redis-support-with-ispconfig\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/schaal-it.dev\/en\/"},{"@type":"ListItem","position":2,"name":"Redis Support with ISPConfig"}]},{"@type":"WebSite","@id":"https:\/\/schaal-it.dev\/en\/#website","url":"https:\/\/schaal-it.dev\/en\/","name":"schaal @it UG","description":"","publisher":{"@id":"https:\/\/schaal-it.dev\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/schaal-it.dev\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/schaal-it.dev\/en\/#organization","name":"schaal@it UG","url":"https:\/\/schaal-it.dev\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/schaal-it.dev\/en\/#\/schema\/logo\/image\/","url":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/cropped-schaal_it_logo2_2_-_250px.png","contentUrl":"https:\/\/schaal-it.dev\/en\/wp-content\/uploads\/sites\/2\/2023\/10\/cropped-schaal_it_logo2_2_-_250px.png","width":250,"height":42,"caption":"schaal@it UG"},"image":{"@id":"https:\/\/schaal-it.dev\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/schaal-it.dev\/en\/#\/schema\/person\/97112bea38186367c303945fe91f1101","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d608e74bb5cd2c03fa61fb269810c56ac375940d126f01ea5954cc0a1336e0dc?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/schaal-it.dev"],"url":"https:\/\/schaal-it.dev\/en\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/posts\/706","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/comments?post=706"}],"version-history":[{"count":1,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/posts\/706\/revisions"}],"predecessor-version":[{"id":710,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/posts\/706\/revisions\/710"}],"wp:attachment":[{"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/media?parent=706"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/categories?post=706"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/schaal-it.dev\/en\/wp-json\/wp\/v2\/tags?post=706"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}