{"id":30031,"date":"2019-10-31T21:33:20","date_gmt":"2019-10-31T18:33:20","guid":{"rendered":"https:\/\/prohoster.info\/blog\/linux-foundation-zajmetsya-open-source-chipami\/"},"modified":"2019-10-31T21:33:20","modified_gmt":"2019-10-31T18:33:20","slug":"linux-foundation-zajmetsya-open-source-chipami","status":"publish","type":"post","link":"https:\/\/prohoster.info\/en\/blog\/linux-foundation-zajmetsya-open-source-chipami","title":{"rendered":"Linux Foundation will handle open source chips","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<p>The Linux Foundation has launched a new initiative \u2014 CHIPS Alliance. As part of this project, the organization will develop an open-source RISC-V command system and technologies for creating processors based on it. Let's take a closer look at what's happening in this area.<\/p>\n<p><noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/it-grad\/blog\/444664\/\"><img decoding=\"async\" alt=\"Linux Foundation will handle open source chips\" src=\"\/wp-content\/uploads\/2019\/03\/1462a91d6041c6aa6c2fdb4267ecbd92.jpeg\" style=\"display:block;margin: 0 auto;\" \/><\/a><\/noindex><noindex><a rel=\"nofollow\" name=\"habracut\"><\/a><\/noindex><br \/>\n<i>\/ \u0444\u043e\u0442\u043e <noindex><a rel=\"nofollow\" href=\"https:\/\/www.flickr.com\/photos\/120586634@N05\/32418936265\/\">Gareth Halfacree<\/a><\/noindex> <noindex><a rel=\"nofollow\" href=\"https:\/\/creativecommons.org\/licenses\/by-sa\/2.0\/\">CC BY-SA<\/a><\/noindex><\/i><\/p>\n<h2>Why CHIPS Alliance Was Established<\/h2>\n<p>\nPatches protecting against Meltdown and Spectre sometimes <noindex><a rel=\"nofollow\" href=\"https:\/\/www.tomshardware.com\/news\/linux-spectre-patch-50-percent-performance-penalty,38099.html\">reduce server performance<\/a><\/noindex> by up to 50%. At the same time, new variants of vulnerabilities related to speculative execution continue to emerge. One of them <noindex><a rel=\"nofollow\" href=\"https:\/\/arxiv.org\/pdf\/1903.00446.pdf\">became known in early March<\/a><\/noindex> \u2014 cybersecurity experts dubbed it Spoiler. This situation affects the <noindex><a rel=\"nofollow\" href=\"https:\/\/www.pcworld.com\/article\/3299477\/solving-spectre-and-meltdown-may-ultimately-require-an-entirely-new-type-of-processor.html\">sparked<\/a><\/noindex> need to reassess existing hardware solutions and approaches to their development. In particular, Intel <noindex><a rel=\"nofollow\" href=\"https:\/\/hackaday.com\/2018\/12\/12\/intel-announces-faster-processor-patched-for-meltdown-and-spectre\/\">is already preparing<\/a><\/noindex> a new architecture for its processors that is immune to Meltdown and Spectre.<\/p>\n<p>The Linux Foundation has also joined the effort. The organization has launched its own initiative\u2014CHIPS Alliance\u2014whose participants will focus on developing processors based on RISC-V.<\/p>\n<h2>What Projects Are Already Being Developed<\/h2>\n<p><\/p>\n<blockquote><p>The list of CHIPS Alliance participants includes Google, Western Digital (WD), and SiFive. Each of them has introduced their own developments. Let's discuss some of them.<\/p><\/blockquote>\n<p><\/p>\n<h5>RISCV-DV<\/h5>\n<p>\nThe search giant has released an open-source platform for testing processors based on RISC-V. The solution randomly <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/google\/riscv-dv\">generates<\/a><\/noindex> commands that <noindex><a rel=\"nofollow\" href=\"https:\/\/content.riscv.org\/wp-content\/uploads\/2018\/12\/14.25-Tao-Liu-Richard-Ho-UVM-based-RISC-V-Processor-Verification-Platform.pdf\">allow<\/a><\/noindex> test the functionality of the device: it tests transition processes, the call stack, <noindex><a rel=\"nofollow\" href=\"https:\/\/en.wikipedia.org\/wiki\/Control\/Status_Register\">CSR<\/a><\/noindex>-registers, and more.<\/p>\n<p>For example, <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/google\/riscv-dv\/blob\/master\/test\/riscv_instr_test_lib.sv\">This is what the class looks like<\/a><\/noindex>, responsible for conducting a simple arithmetic instruction test:<\/p>\n<pre><code class=\"cpp\">class riscv_arithmetic_basic_test extends riscv_instr_base_test;\n\n  `uvm_component_utils(riscv_arithmetic_basic_test)\n  `uvm_component_new\n\n  virtual function void randomize_cfg();\n    cfg.instr_cnt = 10000;\n    cfg.num_of_sub_program = 0;\n    cfg.no_fence = 1;\n    cfg.no_data_page = 1'b1;\n    cfg.no_branch_jump = 1'b1;\n    `DV_CHECK_RANDOMIZE_WITH_FATAL(cfg,\n                                   init_privileged_mode == MACHINE_MODE;\n                                   max_nested_loop == 0;)\n    `uvm_info(`gfn, $sformatf(\"riscv_instr_gen_config is randomized:n%0s\",\n                    cfg.sprint()), UVM_LOW)\n  endfunction\n\nendclass\n<\/code><\/pre>\n<p>\nAccording to <noindex><a rel=\"nofollow\" href=\"https:\/\/content.riscv.org\/wp-content\/uploads\/2018\/12\/14.25-Tao-Liu-Richard-Ho-UVM-based-RISC-V-Processor-Verification-Platform.pdf\">words<\/a><\/noindex> For developers, the platform stands out from its counterparts by allowing thorough testing of all components of the chip, including the memory block.<\/p>\n<h5>OmniXtend Protocol<\/h5>\n<p>\nThis is a network protocol from WD that ensures cache coherence when transferring data over Ethernet. <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/westerndigitalcorporation\/omnixtend\">OmniXtend<\/a><\/noindex> allows direct communication with the processor cache and is used to connect various accelerators: GPU or FPGA. It is also suitable for building multi-chip RISC-V based systems.<\/p>\n<p>The protocol is already supported <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/westerndigitalcorporation\/swerv_eh1\">by SweRV chips<\/a><\/noindex>, which are aimed at data processing in data centers. SweRV is a 32-bit dual-issue superscalar processor built using a 28-nanometer process technology. Each pipeline has nine stages, enabling multiple instructions to be loaded and executed simultaneously. The device operates at a frequency of 1.8 GHz.<\/p>\n<h5>Rocket Chip generator<\/h5>\n<p>\nis a solution from SiFive, founded by the developers of RISC-V technology. <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/freechipsproject\/rocket-chip\">Rocket Chip<\/a><\/noindex> is a generator of RISC-V processor cores in Chisel language. It <noindex><a rel=\"nofollow\" href=\"https:\/\/www2.eecs.berkeley.edu\/Pubs\/TechRpts\/2016\/EECS-2016-17.pdf\">is a<\/a><\/noindex> is a set of parameterized libraries used to create <noindex><a rel=\"nofollow\" href=\"https:\/\/ru.wikipedia.org\/wiki\/%D0%A1%D0%B8%D1%81%D1%82%D0%B5%D0%BC%D0%B0_%D0%BD%D0%B0_%D0%BA%D1%80%D0%B8%D1%81%D1%82%D0%B0%D0%BB%D0%BB%D0%B5\">SoC<\/a><\/noindex>.<\/p>\n<p>As for <noindex><a rel=\"nofollow\" href=\"https:\/\/github.com\/freechipsproject\/chisel3\/\">Chisel<\/a><\/noindex>, which is a hardware description language based on Scala. It generates low-level Verilog code that <noindex><a rel=\"nofollow\" href=\"https:\/\/chisel.eecs.berkeley.edu\/\">is also suitable<\/a><\/noindex> is processed on ASICs and FPGAs. Thus, it enables the use of OOP principles in development <noindex><a rel=\"nofollow\" href=\"https:\/\/ru.wikipedia.org\/wiki\/%D0%A3%D1%80%D0%BE%D0%B2%D0%B5%D0%BD%D1%8C_%D1%80%D0%B5%D0%B3%D0%B8%D1%81%D1%82%D1%80%D0%BE%D0%B2%D1%8B%D1%85_%D0%BF%D0%B5%D1%80%D0%B5%D0%B4%D0%B0%D1%87\">RTL<\/a><\/noindex>.<\/p>\n<h2>Prospects of the alliance<\/h2>\n<p>\nExperts say that the Linux Foundation initiative will make the processor market more democratic and open to new players. IDC noted <noindex><a rel=\"nofollow\" href=\"https:\/\/devops.com\/linux-foundation-to-host-chips-alliance-project-to-propel-industry-innovation-through-open-source-cpu-chip-and-soc-design\/\">note<\/a><\/noindex>, that the growing popularity of such projects will positively impact the development of machine learning technologies and AI systems as a whole.<\/p>\n<p><img decoding=\"async\" alt=\"Linux Foundation will handle open source chips\" src=\"\/wp-content\/uploads\/2019\/03\/9b7ea1fb634f7fc1e258d38e2fe96398.jpeg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<i>\/ \u0444\u043e\u0442\u043e <noindex><a rel=\"nofollow\" href=\"https:\/\/www.flickr.com\/photos\/130561288@N04\/46764481872\">Fritzchens Fritz<\/a><\/noindex> PD<\/i><\/p>\n<p>The development of open source processors will also lower the cost of designing custom chips. However, this will only occur if the Linux Foundation community can attract a sufficient number of developers.<\/p>\n<h2>Similar projects<\/h2>\n<p>\nOther organizations are also developing projects related to open hardware. An example is the CXL consortium, which introduced the Compute Express Link standard in mid-March. This technology is analogous to OmniXtend and also connects CPU, GPU, and FPGA. The standard uses the PCIe 5.0 bus for data transfer.<\/p>\n<p>Another project focusing on processor technology development is MIPS Open, which emerged in December 2018. The initiative was created by the startup Wave Computing. The developers plan to <noindex><a rel=\"nofollow\" href=\"https:\/\/wavecomp.ai\/mips-open\/\">open<\/a><\/noindex> access to the latest 32-bit and 64-bit MIPS instruction sets for the IT community. The project is set to launch <noindex><a rel=\"nofollow\" href=\"https:\/\/www.sensorsmag.com\/embedded\/mips-open-advisory-board-open-for-biz\">it is anticipated<\/a><\/noindex> in the coming months.<\/p>\n<p>Overall, the open source approach is becoming widely accepted not only for software but also for hardware. Such projects are supported by major companies. Therefore, we can expect that in the near future, more devices based on open hardware standards will appear in the market.<\/p>\n<p>\nRecent posts from our corporate blog:<\/p>\n<ul>\n<li><noindex><a rel=\"nofollow\" href=\"https:\/\/iaas-blog.it-grad.ru\/novosti\/chto-nuzhno-znat-o-pci-dss-obzor-standarta\/\">What You Need to Know About PCI DSS: A Standard Overview<\/a><\/noindex><\/li>\n<li><noindex><a rel=\"nofollow\" href=\"https:\/\/iaas-blog.it-grad.ru\/tendencii\/mir-do-i-posle-kak-izmenilas-zhizn-s-nastupleniem-dns-flag-day\/\">The World Before and After. How Life Changed with the Arrival of DNS Flag Day<\/a><\/noindex><\/li>\n<li><noindex><a rel=\"nofollow\" href=\"https:\/\/iaas-blog.it-grad.ru\/funkcionalnost\/posleavarijnoe-vosstanovlenie-kak-usluga-disaster-recovery-as-a-service\/\">Disaster recovery as a service: what you need to know<\/a><\/noindex><\/li>\n<\/ul>\n<p>\nPosts from our Telegram channel:<\/p>\n<ul>\n<li><noindex><a rel=\"nofollow\" href=\"https:\/\/t.me\/iaasblog\/201\">How to Manage Hardware in a Data Center \u2014 Two New Technologies<\/a><\/noindex><\/li>\n<li><noindex><a rel=\"nofollow\" href=\"https:\/\/t.me\/iaasblog\/194\">How an IaaS provider protects client data<\/a><\/noindex><\/li>\n<li><noindex><a rel=\"nofollow\" href=\"https:\/\/t.me\/iaasblog\/190\">Why does VMware vSphere need an HTML5 client?<\/a><\/noindex><\/li>\n<\/ul>\n<p>Source: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/it-grad\/blog\/444664\/\">habr.com<\/a><\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>Linux Foundation \u043e\u0442\u043a\u0440\u044b\u043b\u0438 \u043d\u043e\u0432\u043e\u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u2014 CHIPS Alliance. \u0412 \u0440\u0430\u043c\u043a\u0430\u0445 \u044d\u0442\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u043a\u043e\u043c\u0430\u043d\u0434 RISC-V \u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u043e\u0432 \u043d\u0430 \u0435\u0451 \u043e\u0441\u043d\u043e\u0432\u0435. \u0420\u0430\u0441\u0441\u043a\u0430\u0436\u0435\u043c \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435, \u0447\u0442\u043e \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0432 \u044d\u0442\u043e\u0439 \u0441\u0444\u0435\u0440\u0435. \/ \u0444\u043e\u0442\u043e Gareth Halfacree CC BY-SA \u041f\u043e\u0447\u0435\u043c\u0443 \u043f\u043e\u044f\u0432\u0438\u043b\u0441\u044f CHIPS Alliance \u041f\u0430\u0442\u0447\u0438, \u0437\u0430\u0449\u0438\u0449\u0430\u044e\u0449\u0438\u0435 \u043e\u0442 Meltdown \u0438 Spectre, \u0432 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u043b\u0443\u0447\u0430\u044f\u0445 \u0441\u043d\u0438\u0436\u0430\u044e\u0442 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-30031","post","type-post","status-publish","format-standard","hentry"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Linux Foundation \u043e\u0442\u043a\u0440\u044b\u043b\u0438 \u043d\u043e\u0432\u043e\u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u2014 CHIPS Alliance. \u0412 \u0440\u0430\u043c\u043a\u0430\u0445 \u044d\u0442\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u043a\u043e\u043c\u0430\u043d\u0434 RISC-V \u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u043e\u0432 \u043d\u0430 \u0435\u0451 \u043e\u0441\u043d\u043e\u0432\u0435.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/en\/blog\/linux-foundation-zajmetsya-open-source-chipami\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47Linux Foundation \u0437\u0430\u0439\u043c\u0435\u0442\u0441\u044f open source \u0447\u0438\u043f\u0430\u043c\u0438 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"Linux Foundation \u043e\u0442\u043a\u0440\u044b\u043b\u0438 \u043d\u043e\u0432\u043e\u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u2014 CHIPS Alliance. \u0412 \u0440\u0430\u043c\u043a\u0430\u0445 \u044d\u0442\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u043a\u043e\u043c\u0430\u043d\u0434 RISC-V \u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u043e\u0432 \u043d\u0430 \u0435\u0451 \u043e\u0441\u043d\u043e\u0432\u0435.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/en\/blog\/linux-foundation-zajmetsya-open-source-chipami\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2019-10-31T18:33:20+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2019-10-31T18:33:20+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47Linux Foundation to focus on open source chips | ProHoster","description":"The Linux Foundation has launched a new initiative \u2014 the CHIPS Alliance. As part of this project, the organization will develop an open-source RISC-V command system and technologies for creating processors based on it.","canonical_url":"https:\/\/prohoster.info\/en\/blog\/linux-foundation-zajmetsya-open-source-chipami","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"en_US","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47Linux Foundation \u0437\u0430\u0439\u043c\u0435\u0442\u0441\u044f open source \u0447\u0438\u043f\u0430\u043c\u0438 | ProHoster","og:description":"Linux Foundation \u043e\u0442\u043a\u0440\u044b\u043b\u0438 \u043d\u043e\u0432\u043e\u0435 \u043d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u2014 CHIPS Alliance. \u0412 \u0440\u0430\u043c\u043a\u0430\u0445 \u044d\u0442\u043e\u0433\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0430 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0431\u0443\u0434\u0435\u0442 \u0440\u0430\u0437\u0432\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u0443\u044e \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u043a\u043e\u043c\u0430\u043d\u0434 RISC-V \u0438 \u0442\u0435\u0445\u043d\u043e\u043b\u043e\u0433\u0438\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440\u043e\u0432 \u043d\u0430 \u0435\u0451 \u043e\u0441\u043d\u043e\u0432\u0435.","og:url":"https:\/\/prohoster.info\/en\/blog\/linux-foundation-zajmetsya-open-source-chipami","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2019-10-31T18:33:20+00:00","article:modified_time":"2019-10-31T18:33:20+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"30031","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-01-20 23:28:27","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-03-01 03:43:15","updated":"2026-01-20 23:28:27","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/30031","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/comments?post=30031"}],"version-history":[{"count":0,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/posts\/30031\/revisions"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/media?parent=30031"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/categories?post=30031"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/en\/wp-json\/wp\/v2\/tags?post=30031"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}