{"id":21,"date":"2025-10-24T11:32:47","date_gmt":"2025-10-24T11:32:47","guid":{"rendered":"https:\/\/virtualserversvps.com\/blog\/?p=21"},"modified":"2026-09-14T22:03:19","modified_gmt":"2026-09-14T22:03:19","slug":"what-is-vps-virtual-private-server-definition-complete-guide","status":"publish","type":"post","link":"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/","title":{"rendered":"vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Two VPS plans can advertise &#8220;2 vCPU \/ 4 GB \/ NVMe&#8221; and deliver 4x different throughput under load. The number on the order page is a ceiling, not a guarantee. This article works through what the ceiling actually means \u2014 the scheduler weights, the overcommit ratio, and the I\/O throttle \u2014 and shows you how to measure your real allocation in about ten minutes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">CPU: Shares Are Weights, Not Cores<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">KVM guests run as Linux threads on the host, scheduled by CFS (Completely Fair Scheduler). A guest with 2 vCPU is two host threads with a `cpu.shares` weight. The default weight per core is 1024. A provider that sets your two cores to shares=2048 while a neighbour runs eight cores at shares=8192 is telling the scheduler to give you 1\/5 of the contention window when both are runnable. On an idle host you get the full two cores; on a busy host you get your weight ratio.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Allocation model<\/th><th>Contract<\/th><th>Typical steal under load<\/th><th>Best for<\/th><\/tr><\/thead><tbody><tr><td>Shared \/ overcommitted<\/td><td>cpu.shares weight only<\/td><td>3\u201315%<\/td><td>bursty web traffic, dev boxes<\/td><\/tr><tr><td>Fair-share cgroup cap<\/td><td>`cpu.max` quota (e.g. 200000\/100000)<\/td><td>&lt; 2% of quota<\/td><td>steady web apps<\/td><\/tr><tr><td>Dedicated vCPU pinning<\/td><td>`cpuset` \u2014 exclusive physical cores<\/td><td>0\u20130.5%<\/td><td>databases, latency-sensitive APIs<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Verify what you got. Steal time near zero plus a load average that tracks real work means you are effectively exclusive. Sustained steal above 4% under your own saturated load means you are sharing.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Is your vCPU actually available? Saturate and watch steal for 30s.\nsudo apt install -y sysstat\nfor i in $(seq 1 $(nproc)); do (yes &gt; \/dev\/null &amp;) ; done\nvmstat 1 30 | awk 'NR==1||NR&gt;2{print}'\npkill yes\n# Interpretation: r column &gt;&gt; nproc is fine; st column = steal, that is the number to watch.<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Memory: The Overcommit Ratio Decides Your Swap Rate<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">`MemTotal` inside the guest is never the story. The story is `vm.overcommit_ratio` and whether the host uses KSM and swap-backed guest memory. On a 1:1.5 host you will essentially never swap. On a 1:3 host, the hypervisor can balloon your guest and you will see swap activity that your own `swappiness` setting did not cause. Detect it before it becomes an incident:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Inside the guest \u2014 page faults and swap-in from host pressure\ngrep -E 'pgmajfault|pswpin|pswpout' \/proc\/vmstat\n# Watch major faults per second; a steady non-zero rate at idle load = host memory pressure\nwhile :; do grep -E 'pgmajfault' \/proc\/vmstat; sleep 5; done<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">A useful rule for a 1 GB\u20134 GB instance: keep your application working set at or below 70% of `MemTotal`, and keep swap at 1\u20132 GB on NVMe. That leaves 30% as page cache headroom, which is where most of your read performance lives.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Storage: IOPS Throttling Is Invisible Until It Bites<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Cloud providers enforce disk throughput with a token bucket, usually in the hypervisor&#8217;s blkio cgroup. You will not see it in `IOPS` on the invoice \u2014 you see it as latency spikes at consistent intervals. The tell-tale: latency that is flat at low queue depth and then jumps to tens of milliseconds at the exact same point every time.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Locate your throttle ceiling with fio at increasing queue depth\nfor qd in 1 4 16 32 64; do\n  echo \"--- QD $qd ---\"\n  fio --name=vm --filename=\/tmp\/fio.tmp --size=1G --bs=4k --rw=randread \\\n      --iodepth=$qd --ioengine=libaio --direct=1 --runtime=20 --time_based \\\n      --group_reporting 2&gt;\/dev\/null | grep -E 'iops=|lat \\(usec\\)'\ndone\nrm -f \/tmp\/fio.tmp<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Plot IOPS against queue depth. A healthy NVMe disappears into the ether until ~64 QD. A throttled plan goes flat at, say, 3000 IOPS while latency doubles at each step \u2014 that is your token bucket, and no amount of application tuning will move it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What to Do With the Numbers<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>If steal is high and IOPS are capped, the fix is a plan upgrade, not `sysctl`.<\/li>\n<li>If steal is low, IOPS climb cleanly, and RAM overcommit is benign \u2014 your host is honest, and every tuning guide on the internet applies directly.<\/li>\n<li>If RAM overcommit is the problem but CPU and I\/O are clean, drop to a smaller application footprint: fewer PHP-FPM workers, smaller `shared_buffers`, no sidecar services you do not need.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How Providers Enforce I\/O Without Saying So<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Disk throughput limits are applied at the hypervisor, usually through QEMU&#8217;s throttling (`blkio` cgroups) or a storage-side token bucket. Both look identical from inside the guest, and both produce a characteristic signature: throughput that is perfectly flat regardless of how much concurrency you throw at it, and latency that grows linearly with queue depth because requests are queued behind the throttle rather than executed. The giveaway is `%util` in `iostat` sitting at 100% while the drive is clearly not saturated.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Throttle signature: util pinned at 100%, high await, low throughput\niostat -x 2 10 | grep -A1 Device\n#   Device  r\/s     rkB\/s   await  %util\n#   nvme0n1 780     3152    42.8   100.0   &lt;- 780 IOPS and 42ms await == token bucket\n#\n# Compare against your plan's advertised IOPS. If measured ~= advertised, you are capped.\nsudo smartctl -a \/dev\/nvme0n1 2&gt;\/dev\/null | grep -E 'Model|Firmware'   # often virtualised anyway<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Burst credits make this harder to read. Many plans allow short bursts above the sustained cap, so a 10-second fio run looks excellent while a 5-minute run collapses. Always test for at least 60 seconds when you are probing for throttling; short benchmarks measure the credit tank, not the throughput ceiling.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Diagnostic Order for Any VPS Slowdown<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>Measure steal first \u2014 it is the only metric you cannot fix from inside the guest.<\/li>\n<li>Measure I\/O latency at fixed queue depth before you measure throughput; latency reveals throttling that throughput hides behind bursts.<\/li>\n<li>Measure available memory and swap-in rate; host overcommit shows up here, not in your own `swappiness`.<\/li>\n<li>Only after those three are clean does application tuning (PHP-FPM, buffer pools, worker counts) have any chance of helping.<\/li><\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">The measured versions of these tables live in <a href=\"https:\/\/virtualserversvps.com\/\">our published VPS benchmark dataset<\/a> \u2014 CPU steal deltas, fio curves, and RAM overcommit behaviour per provider. Use <a href=\"https:\/\/virtualserversvps.com\/#providers\">the provider breakdown on the same site<\/a> to pick an allocation model that matches your workload before you migrate.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you are tuning a small VPS and want hardware that does not fight you, <a href=\"https:\/\/virtualserversvps.com\/#providers\">our VPS provider performance tables<\/a> break down CPU steal, NVMe IOPS, and RAM overcommit behaviour across the hosts we test on. Newer KVM nodes with dedicated vCPU pinning make the numbers in this article reproducible rather than aspirational. Two hosts we keep coming back to: <a href=\"https:\/\/interserver.net\/vps?id=1067805&#038;sid=virtualserversvps\" target=\"_blank\" rel=\"noreferrer noopener sponsored\">InterServer VPS<\/a> for flat-rate pricing with no RAM upcharge, and <a href=\"https:\/\/cloudways.com\/en\/?id=2010927&#038;data1=virtualserversvps\" target=\"_blank\" rel=\"noreferrer noopener sponsored\">Cloudways managed cloud<\/a> if you would rather not manage the kernel yourself. Compare the two against <a href=\"https:\/\/virtualserversvps.com\/\">the benchmark methodology we publish<\/a> before you commit.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A VPS is a virtual machine with a guaranteed slice of CPU, RAM, and I\/O. Here is how hypervisors, CPU steal, and storage limits actually determine its performance \u2014 and how to test them.<\/p>\n","protected":false},"author":1,"featured_media":26,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":25,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-21","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-vps-guides-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v26.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet - Virtual Servers VPS Blog<\/title>\n<meta name=\"description\" content=\"Discover what a VPS (Virtual Private Server) is, how it works, and why it matters. Complete guide covering VPS definition, benefits, use cases, and how to choose the right VPS hosting for your needs.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet\" \/>\n<meta property=\"og:description\" content=\"vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual Servers VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-24T11:32:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-14T22:03:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/10\/ScreenShot_2025-10-24_192044_396.png\" \/>\n\t<meta property=\"og:image:width\" content=\"663\" \/>\n\t<meta property=\"og:image:height\" content=\"624\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Virtual-Servers-Vps-Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Virtual-Servers-Vps-Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/\",\"name\":\"vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet - Virtual Servers VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/10\/ScreenShot_2025-10-24_192044_396.png\",\"datePublished\":\"2025-10-24T11:32:47+00:00\",\"dateModified\":\"2026-09-14T22:03:19+00:00\",\"author\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\"},\"description\":\"Discover what a VPS (Virtual Private Server) is, how it works, and why it matters. Complete guide covering VPS definition, benefits, use cases, and how to choose the right VPS hosting for your needs.\",\"breadcrumb\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/#primaryimage\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/10\/ScreenShot_2025-10-24_192044_396.png\",\"contentUrl\":\"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/10\/ScreenShot_2025-10-24_192044_396.png\",\"width\":663,\"height\":624,\"caption\":\"Discover what a VPS (Virtual Private Server) is, how it works, and why it matters. Complete guide covering VPS definition, benefits, use cases, and how to choose the right VPS hosting for your needs.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtualserversvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/\",\"name\":\"Virtual Servers VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\",\"name\":\"Virtual-Servers-Vps-Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"caption\":\"Virtual-Servers-Vps-Editor\"},\"sameAs\":[\"https:\/\/virtualserversvps.com\/blog\"],\"url\":\"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet - Virtual Servers VPS Blog","description":"Discover what a VPS (Virtual Private Server) is, how it works, and why it matters. Complete guide covering VPS definition, benefits, use cases, and how to choose the right VPS hosting for your needs.","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:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/","og_locale":"en_US","og_type":"article","og_title":"vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet","og_description":"vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet","og_url":"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/","og_site_name":"Virtual Servers VPS Blog","article_published_time":"2025-10-24T11:32:47+00:00","article_modified_time":"2026-09-14T22:03:19+00:00","og_image":[{"width":663,"height":624,"url":"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/10\/ScreenShot_2025-10-24_192044_396.png","type":"image\/png"}],"author":"Virtual-Servers-Vps-Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Virtual-Servers-Vps-Editor","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/","url":"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/","name":"vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet - Virtual Servers VPS Blog","isPartOf":{"@id":"https:\/\/virtualserversvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/#primaryimage"},"image":{"@id":"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/10\/ScreenShot_2025-10-24_192044_396.png","datePublished":"2025-10-24T11:32:47+00:00","dateModified":"2026-09-14T22:03:19+00:00","author":{"@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0"},"description":"Discover what a VPS (Virtual Private Server) is, how it works, and why it matters. Complete guide covering VPS definition, benefits, use cases, and how to choose the right VPS hosting for your needs.","breadcrumb":{"@id":"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/#primaryimage","url":"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/10\/ScreenShot_2025-10-24_192044_396.png","contentUrl":"https:\/\/virtualserversvps.com\/blog\/wp-content\/uploads\/2025\/10\/ScreenShot_2025-10-24_192044_396.png","width":663,"height":624,"caption":"Discover what a VPS (Virtual Private Server) is, how it works, and why it matters. Complete guide covering VPS definition, benefits, use cases, and how to choose the right VPS hosting for your needs."},{"@type":"BreadcrumbList","@id":"https:\/\/virtualserversvps.com\/blog\/what-is-vps-virtual-private-server-definition-complete-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtualserversvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"vCPU Shares, RAM Overcommit, and I\/O Limits: The Numbers Behind a VPS Spec Sheet"}]},{"@type":"WebSite","@id":"https:\/\/virtualserversvps.com\/blog\/#website","url":"https:\/\/virtualserversvps.com\/blog\/","name":"Virtual Servers VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0","name":"Virtual-Servers-Vps-Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","caption":"Virtual-Servers-Vps-Editor"},"sameAs":["https:\/\/virtualserversvps.com\/blog"],"url":"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/"}]}},"_links":{"self":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/21","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/comments?post=21"}],"version-history":[{"count":8,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/21\/revisions"}],"predecessor-version":[{"id":1133,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/21\/revisions\/1133"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/media\/26"}],"wp:attachment":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/media?parent=21"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/categories?post=21"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/tags?post=21"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}