{"id":1214,"date":"2026-09-17T23:13:38","date_gmt":"2026-09-17T23:13:38","guid":{"rendered":"https:\/\/affordablevpsserver.com\/blog\/?p=1214"},"modified":"2026-09-17T23:13:38","modified_gmt":"2026-09-17T23:13:38","slug":"how-much-ram-small-business-website-actually-need","status":"publish","type":"post","link":"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/","title":{"rendered":"How Much RAM Does a Small Business Website Actually Need?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">&ldquo;How much RAM does a small business website need?&rdquo; is the single most common sizing question we see, and the honest answer is a range, not a number. This article gives you the measured figures behind that range so you can size with data instead of guessing.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What actually consumes memory on a web server<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">On a typical LAMP or LEMP stack, resident memory is consumed by four things: the operating system and base services, the web server process, the application runtime (PHP-FPM workers for most small business sites), and the database. Each has a floor, and each scales differently with traffic.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Component<\/th><th>Idle RAM<\/th><th>Under moderate load<\/th><\/tr><\/thead><tbody>\n\n<tr><td>OS + systemd + sshd<\/td><td>120&ndash;200 MB<\/td><td>same<\/td><\/tr>\n\n\n<tr><td>Nginx<\/td><td>20&ndash;60 MB<\/td><td>60&ndash;150 MB<\/td><\/tr>\n\n\n<tr><td>PHP-FPM (per worker)<\/td><td>40&ndash;90 MB<\/td><td>same per worker<\/td><\/tr>\n\n\n<tr><td>MariaDB\/MySQL<\/td><td>250&ndash;500 MB<\/td><td>500 MB&ndash;1 GB<\/td><\/tr>\n\n\n<tr><td>Redis (object cache)<\/td><td>0 (optional)<\/td><td>80&ndash;200 MB<\/td><\/tr>\n\n<\/tbody><\/table><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">A single cached WordPress site with two PHP-FPM workers and a lean database sits comfortably around 600&ndash;900 MB resident. A business site with a contact form, a small product catalogue, and a booking plugin sits closer to 1.2&ndash;1.6 GB.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Sizing by site type<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n\n<li><strong>Brochure site (5&ndash;10 pages, no cart):<\/strong> 1 GB is sufficient; 512 MB works with aggressive caching.<\/li>\n\n\n<li><strong>Business site with dynamic forms and plugins:<\/strong> 2 GB is the comfortable floor.<\/li>\n\n\n<li><strong>Small WooCommerce store (under 500 products):<\/strong> 2&ndash;4 GB, plus Redis if you can.<\/li>\n\n\n<li><strong>Multi-site or agency server (5+ client sites):<\/strong> 4&ndash;8 GB, isolated per-site in PHP-FPM pools.<\/li>\n\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">The jump from 1 GB to 2 GB is the most cost-effective upgrade a small business site can make, because it eliminates swap-thrashing during traffic spikes and plugin-heavy admin sessions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Traffic matters less than concurrency<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Monthly visitor counts are a poor sizing metric. What matters is how many requests are in flight at the same instant. A site with 50,000 monthly visitors that receives them evenly needs far less RAM than a site with 5,000 visitors that all arrive in a ten-minute burst. Estimate your peak concurrent requests, multiply by the average memory per PHP worker, and add the database floor. That is your true requirement.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why swap is not a substitute for RAM<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">When a server runs out of physical memory, the kernel moves cold pages to swap on disk. On a budget VPS with shared NVMe or, worse, network-backed storage, swap latency is measured in milliseconds rather than nanoseconds. A site that swaps during peak traffic does not slow down gracefully &mdash; it stalls. The first request that triggers a swap-in can block for hundreds of milliseconds, and under concurrent load those stalls compound. Swap is a safety net for unexpected spikes, not a capacity plan.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The role of caching in reducing RAM pressure<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Object caching is the cheapest memory upgrade you can buy, because it converts repeated database queries into memory lookups. A Redis instance using 100&ndash;150 MB can cut the database&#8217;s working set and reduce PHP execution time enough to serve noticeably more traffic on the same plan. Page caching at the Nginx or CDN layer goes further still, because a cached page never touches PHP-FPM or the database at all.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n\n<li><strong>Page cache (Nginx fastcgi_cache or a CDN):<\/strong> largest reduction in resource use per dollar. Zero cost on most stacks.<\/li>\n\n\n<li><strong>Object cache (Redis):<\/strong> 100&ndash;200 MB buys a large reduction in database load.<\/li>\n\n\n<li><strong>Opcode cache (OPcache):<\/strong> built into PHP; enable it and give it 64&ndash;128 MB.<\/li>\n\n\n<li><strong>Full-page static export:<\/strong> for purely informational sites, removes the application from the request path entirely.<\/li>\n\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">A practical sizing procedure<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n\n<li>Install a monitoring tool and record resident memory over a full week, including your busiest hour.<\/li>\n\n\n<li>Identify your peak, not your average. Size to peak plus 30%.<\/li>\n\n\n<li>Confirm the plan offers dedicated (not burstable) memory at that size.<\/li>\n\n\n<li>Verify the storage and transfer allowance covers your traffic, not just your memory.<\/li>\n\n\n<li>Budget for the year-two renewal price, not the introductory rate.<\/li>\n\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If your measured peak with margin lands at 1.3 GB, buy 2 GB, not 1 GB. There is no upside to running a production business site at 90% memory utilization. Compare current plans and their year-two pricing on the <a href=\"https:\/\/affordablevpsserver.com\/#comparison\">budget VPS comparison table<\/a> before you decide.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Related reading on this blog: RAM headroom guidance, swap vs more RAM, and how much RAM a $5 plan actually provides for WordPress.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>&ldquo;How much RAM does a small business website need?&rdquo; is the single most common sizing question we see, and the honest answer is a range, not a number. This article gives you the measured figures behind that range so you can size with data instead of guessing. What actually consumes memory on a web server [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":1,"footnotes":""},"categories":[2],"tags":[],"class_list":["post-1214","post","type-post","status-publish","format-standard","hentry","category-budget-vps-guides"],"blocksy_meta":[],"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>How Much RAM Does a Small Business Website Actually Need? - Affordable VPS Server Blog<\/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:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Much RAM Does a Small Business Website Actually Need?\" \/>\n<meta property=\"og:description\" content=\"How Much RAM Does a Small Business Website Actually Need?\" \/>\n<meta property=\"og:url\" content=\"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/\" \/>\n<meta property=\"og:site_name\" content=\"Affordable VPS Server Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-17T23:13:38+00:00\" \/>\n<meta name=\"author\" content=\"Affordable-Vps-Server-Author\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Affordable-Vps-Server-Author\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/\",\"url\":\"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/\",\"name\":\"How Much RAM Does a Small Business Website Actually Need? - Affordable VPS Server Blog\",\"isPartOf\":{\"@id\":\"https:\/\/affordablevpsserver.com\/blog\/#website\"},\"datePublished\":\"2026-09-17T23:13:38+00:00\",\"author\":{\"@id\":\"https:\/\/affordablevpsserver.com\/blog\/#\/schema\/person\/685a02c93a3c45030f7427ec928b0df7\"},\"breadcrumb\":{\"@id\":\"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/affordablevpsserver.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Much RAM Does a Small Business Website Actually Need?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/affordablevpsserver.com\/blog\/#website\",\"url\":\"https:\/\/affordablevpsserver.com\/blog\/\",\"name\":\"Affordable VPS Server Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/affordablevpsserver.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/affordablevpsserver.com\/blog\/#\/schema\/person\/685a02c93a3c45030f7427ec928b0df7\",\"name\":\"Affordable-Vps-Server-Author\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/affordablevpsserver.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8fa20973a7dd04621d396c26ba26b5c5e6c19595583335121958527393f6f95e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8fa20973a7dd04621d396c26ba26b5c5e6c19595583335121958527393f6f95e?s=96&d=mm&r=g\",\"caption\":\"Affordable-Vps-Server-Author\"},\"sameAs\":[\"https:\/\/affordablevpsserver.com\/blog\"],\"url\":\"https:\/\/affordablevpsserver.com\/blog\/author\/affordablevpsserver\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How Much RAM Does a Small Business Website Actually Need? - Affordable VPS Server Blog","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:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/","og_locale":"en_US","og_type":"article","og_title":"How Much RAM Does a Small Business Website Actually Need?","og_description":"How Much RAM Does a Small Business Website Actually Need?","og_url":"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/","og_site_name":"Affordable VPS Server Blog","article_published_time":"2026-09-17T23:13:38+00:00","author":"Affordable-Vps-Server-Author","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Affordable-Vps-Server-Author","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/","url":"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/","name":"How Much RAM Does a Small Business Website Actually Need? - Affordable VPS Server Blog","isPartOf":{"@id":"https:\/\/affordablevpsserver.com\/blog\/#website"},"datePublished":"2026-09-17T23:13:38+00:00","author":{"@id":"https:\/\/affordablevpsserver.com\/blog\/#\/schema\/person\/685a02c93a3c45030f7427ec928b0df7"},"breadcrumb":{"@id":"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/affordablevpsserver.com\/blog\/how-much-ram-small-business-website-actually-need\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/affordablevpsserver.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How Much RAM Does a Small Business Website Actually Need?"}]},{"@type":"WebSite","@id":"https:\/\/affordablevpsserver.com\/blog\/#website","url":"https:\/\/affordablevpsserver.com\/blog\/","name":"Affordable VPS Server Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/affordablevpsserver.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/affordablevpsserver.com\/blog\/#\/schema\/person\/685a02c93a3c45030f7427ec928b0df7","name":"Affordable-Vps-Server-Author","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/affordablevpsserver.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8fa20973a7dd04621d396c26ba26b5c5e6c19595583335121958527393f6f95e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8fa20973a7dd04621d396c26ba26b5c5e6c19595583335121958527393f6f95e?s=96&d=mm&r=g","caption":"Affordable-Vps-Server-Author"},"sameAs":["https:\/\/affordablevpsserver.com\/blog"],"url":"https:\/\/affordablevpsserver.com\/blog\/author\/affordablevpsserver\/"}]}},"_links":{"self":[{"href":"https:\/\/affordablevpsserver.com\/blog\/wp-json\/wp\/v2\/posts\/1214","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/affordablevpsserver.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/affordablevpsserver.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/affordablevpsserver.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/affordablevpsserver.com\/blog\/wp-json\/wp\/v2\/comments?post=1214"}],"version-history":[{"count":1,"href":"https:\/\/affordablevpsserver.com\/blog\/wp-json\/wp\/v2\/posts\/1214\/revisions"}],"predecessor-version":[{"id":1216,"href":"https:\/\/affordablevpsserver.com\/blog\/wp-json\/wp\/v2\/posts\/1214\/revisions\/1216"}],"wp:attachment":[{"href":"https:\/\/affordablevpsserver.com\/blog\/wp-json\/wp\/v2\/media?parent=1214"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/affordablevpsserver.com\/blog\/wp-json\/wp\/v2\/categories?post=1214"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/affordablevpsserver.com\/blog\/wp-json\/wp\/v2\/tags?post=1214"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}