Table of Contents
- Why Website Speed Matters
- Impact of Website Speed on SEO Rankings
- Impact of Website Speed on Conversions and Revenue
- Core Web Vitals Explained
- How to Measure Website Speed
- Image Optimisation
- Code Minification and Optimisation
- Browser Caching
- Server and Hosting Optimisation
- Content Delivery Network (CDN)
- Database Optimisation
- Common Website Speed Issues
- Essential Website Speed Optimisation Tools
- Website Hosting Tips for Singapore Businesses
- Frequently Asked Questions
- Conclusion
Why Website Speed Matters
Impact of Website Speed on SEO Rankings
Google has explicitly confirmed that page speed is a ranking factor. In 2021, the search engine incorporated Core Web Vitals — a set of real-world performance metrics — into its page experience signals. Sites that perform poorly on these metrics are at a direct ranking disadvantage, particularly for mobile searches. Page Experience Signals Google’s page experience update evaluates several factors:- Core Web Vitals (LCP, INP, and CLS)
- Mobile-friendliness
- HTTPS security
- Absence of intrusive interstitials
- Safe browsing status
| Load Time | Typical Conversion Impact | Estimated Annual Revenue Loss (SGD 100k/month) |
|---|---|---|
| 1 second | 7 per cent fewer conversions | SGD 84,000 |
| 2 seconds | 14 per cent fewer conversions | SGD 168,000 |
| 3 seconds | 25 per cent fewer conversions | SGD 300,000 |
| 5 seconds | 38 per cent fewer conversions | SGD 456,000 |
Core Web Vitals Explained
Core Web Vitals are the three specific metrics Google uses to measure real-world user experience. Understanding each metric is essential for effective website speed optimisation. Largest Contentful Paint (LCP) LCP measures how long it takes for the largest content element in the viewport to become visible. This could be a hero image, a heading block, or a large text element. LCP essentially captures the perceived loading speed of your page.| Rating | LCP Threshold |
|---|---|
| Good | 2.5 seconds or less |
| Needs Improvement | 2.5 to 4.0 seconds |
| Poor | More than 4.0 seconds |
| Rating | INP Threshold |
|---|---|
| Good | 200 milliseconds or less |
| Needs Improvement | 200 to 500 milliseconds |
| Poor | More than 500 milliseconds |
| Rating | CLS Threshold |
|---|---|
| Good | 0.1 or less |
| Needs Improvement | 0.1 to 0.25 |
| Poor | More than 0.25 |
| Tool | Data Type | Best For | Cost |
|---|---|---|---|
| PageSpeed Insights | Lab + Field | Quick overviews and Core Web Vitals assessment | Free |
| Google Search Console | Field | Tracking real-user performance at scale | Free |
| Chrome DevTools Lighthouse | Lab | Detailed diagnostics during development | Free |
| WebPageTest | Lab | Multi-location testing and waterfall analysis | Free |
| GTmetrix | Lab | Historical tracking and grade-based reporting | Free / Paid |
Image Optimisation
Images typically account for 50 per cent or more of a page’s total download size, making image optimisation one of the highest-impact steps in any website speed optimisation project. Choose the Right Format Modern image formats offer dramatically better compression than legacy formats:- WebP provides 25 to 35 per cent smaller files than JPEG at equivalent quality
- AVIF offers 50 per cent smaller files than JPEG with superior compression
- SVG is ideal for logos, icons, and simple illustrations because it scales infinitely
Code Minification and Optimisation
HTML, CSS, and JavaScript files often contain unnecessary whitespace, comments, and formatting that increase file sizes without affecting functionality. Minification removes this extraneous content. HTML Minification Stripping comments, whitespace, and unnecessary attributes from HTML can reduce file sizes by 10 to 15 per cent. For most WordPress sites, plugins such as Autoptimize or WP Rocket handle this automatically. CSS Minification and Critical CSS CSS minification reduces stylesheet sizes. More importantly, extracting critical CSS — the styles needed to render above-the-fold content — and inlining it directly in the HTML head eliminates render-blocking CSS. Non-critical stylesheets can then be loaded asynchronously after the initial render. JavaScript Optimisation JavaScript is often the largest source of performance problems. Heavy scripts block the main thread, increase INP, and delay page interactivity. Key strategies include:- Deferring non-essential scripts using the defer or async attributes
- Removing unused JavaScript through tree-shaking
- Code-splitting large bundles so that only the code needed for the current page loads
- Minimising third-party scripts, which are a leading cause of poor INP scores
Browser Caching
Browser caching allows returning visitors to load your site faster by storing static assets — images, CSS, JavaScript, and fonts — locally in their browser. Without caching, every page visit requires downloading all of these files again from the server. Cache-Control Headers Set appropriate Cache-Control headers on your server to define how long browsers should cache each type of resource:- Static assets such as images, fonts, and compiled CSS/JS: cache for one year with content hashing for cache busting
- HTML pages: cache for a short period or use validation-based caching (ETags)
- API responses: cache according to data freshness requirements
| Resource Type | Recommended Cache Duration | Cache Strategy |
|---|---|---|
| Images, fonts, CSS, JS | 1 year | Long cache with content hash filename |
| HTML pages | No cache or short | ETag or Last-Modified validation |
| API responses | Minutes to hours | Cache-Control: max-age with revalidation |
Server and Hosting Optimisation
Your hosting environment sets the ceiling for your website’s performance. No amount of front-end optimisation can compensate for an underpowered server. Choosing the Right Hosting Shared hosting is the most affordable option but offers the worst performance because server resources are divided among many websites. As traffic grows and performance demands increase, upgrading to a VPS, dedicated server, or managed cloud hosting becomes necessary. For Singapore businesses targeting a regional audience, choosing a hosting provider with servers located in Singapore or nearby Southeast Asian data centres is essential. The physical distance between the server and the user adds latency to every request. A server in Singapore delivers content to local users roughly 50 to 100 milliseconds faster than a server in the United States or Europe. PHP and Database Optimisation For PHP-based sites, running the latest stable PHP version (PHP 8.2 or 8.3 as of 2026) provides significant performance improvements over older versions. Each major PHP release includes substantial speed gains. OPcache should be enabled to store precompiled script bytecode in shared memory, eliminating the need for PHP to load and parse scripts on each request. This alone can reduce server response times by 30 to 50 per cent. HTTP/2 and HTTP/3 Ensure your server supports HTTP/2, which allows multiple resources to be transferred simultaneously over a single connection. HTTP/3 (QUIC) goes further by eliminating TCP head-of-line blocking and reducing connection establishment time. Both protocols deliver measurable improvements in load speed, especially for pages with many small resources.Content Delivery Network (CDN)
A Content Delivery Network distributes your static assets across a global network of edge servers. When a user requests your site, the CDN serves cached content from the server geographically closest to them, reducing latency and offloading traffic from your origin server. How a CDN Improves Speed Without a CDN, every visitor’s request travels to your single origin server regardless of their location. A visitor in Jakarta accessing a site hosted in Singapore experiences higher latency than a visitor in Singapore itself. A CDN with edge servers in both Singapore and Jakarta can serve both visitors with minimal latency. CDN Benefits Beyond Speed CDNs also provide DDoS protection, SSL termination, image optimisation at the edge, and improved reliability during traffic spikes. For websites serving audiences across Southeast Asia, a CDN is not optional — it is a fundamental infrastructure requirement. Popular CDN options for Singapore businesses include Cloudflare (free tier available), AWS CloudFront, Google Cloud CDN, and Fastly. Based on our experience, Cloudflare offers the best balance of performance, features, and value for most SME websites.Database Optimisation
For dynamic websites, the database is often the bottleneck. Every page load may require multiple database queries to retrieve content, user sessions, settings, and plugin data. Common Database Optimisations- Remove unused plugins and themes, which add unnecessary database tables and queries
- Clean up post revisions, spam comments, and transient options that accumulate over time
- Add indexes to frequently queried columns
- Optimise long-running queries identified through slow query logs
- Use object caching (Redis or Memcached) to store query results in memory
- Schedule regular database optimisation as part of your maintenance routine
| Tool | Purpose | Cost |
|---|---|---|
| Google PageSpeed Insights | Core Web Vitals assessment and diagnostics | Free |
| Google Search Console | Real-user performance monitoring | Free |
| WebPageTest | Multi-location speed testing and waterfall analysis | Free |
| GTmetrix | Performance grading with historical tracking | Free / Paid |
| Squoosh | Image compression and format conversion | Free |
| ShortPixel | Bulk image optimisation for websites | Free / Paid |
| Cloudflare | CDN, caching, and edge optimisation | Free / Paid |
| Autoptimize | HTML, CSS, and JS minification for WordPress | Free |
| WP Rocket | Comprehensive caching andoptimisation for WordPress | Paid |
Website Hosting Tips for Singapore Businesses
Choosing and configuring hosting infrastructure correctly has a larger impact on speed than most front-end optimisations. These recommendations are specific to the Singapore market. Server Location Select a hosting provider with servers physically located in Singapore. Major providers with Singapore data centres include AWS (ap-southeast-1), Google Cloud (asia-southeast1), DigitalOcean, Vultr, and local providers such as Vodien and Exabytes. The latency difference between a Singapore server and a US-based server for local visitors typically ranges from 100 to 250 milliseconds per request — a significant difference when pages require multiple requests. Managed Hosting for WordPress If your site runs on WordPress, managed hosting providers such as Cloudways, Kinsta, or WP Engine offer server-level caching, automatic PHP updates, CDN integration, and staging environments. These platforms are optimised specifically for WordPress performance and eliminate much of the server configuration work. Singapore Dollar Budget Expectations| Hosting Type | Typical Monthly Cost (SGD) | Best For |
|---|---|---|
| Shared hosting | SGD 5 to SGD 30 | Low-traffic brochure sites and blogs |
| Managed cloud VPS | SGD 30 to SGD 100 | Growing businesses with moderate traffic |
| Managed WordPress | SGD 50 to SGD 300 | WordPress sites prioritising performance |
| Dedicated server | SGD 200 to SGD 800+ | High-traffic e-commerce and enterprise sites |
What is website speed optimisation?
Website speed optimisation is the process of improving how quickly web pages load and become interactive for visitors. It involves techniques such as image compression, code minification, browser caching, server tuning, CDN deployment, and database optimisation. The goal is to reduce load times, improve Core Web Vitals scores, enhance user experience, and boost search engine rankings.
How long does website speed optimisation take?
Basic optimisations such as image compression, enabling caching, and minifying code can typically be completed within one to three days. More comprehensive projects involving server migration, CDN setup, database restructuring, and third-party script audits may take two to six weeks depending on site complexity. Noticeable improvements in Core Web Vitals are often visible within a week of implementation.
What is a good page load speed in 2026?
In 2026, a good target is a Largest Contentful Paint (LCP) under 2.5 seconds, an Interaction to Next Paint (INP) under 200 milliseconds, and a Cumulative Layout Shift (CLS) under 0.1. These are Google’s thresholds for a good Core Web Vitals rating. For overall perceived speed, the page should feel fully loaded and interactive within two to three seconds on both mobile and desktop devices.
Does website speed affect Google rankings?
Yes. Google confirmed page speed as a ranking factor in 2018 and incorporated Core Web Vitals into its page experience signals in 2021. Sites with better LCP, INP, and CLS scores have a ranking advantage over slower competitors, particularly for mobile searches. Speed also affects crawl efficiency, meaning faster sites get indexed more thoroughly.
How does a CDN improve website speed?
A Content Delivery Network stores copies of your static assets on servers distributed across multiple geographic locations. When a visitor requests your site, the CDN serves content from the server nearest to them, reducing latency. CDNs also reduce load on your origin server, provide DDoS protection, and improve reliability during traffic spikes.
What is the difference between LCP, INP, and CLS?
LCP (Largest Contentful Paint) measures loading speed by tracking when the largest visible content element renders. INP (Interaction to Next Paint) measures interactivity by tracking how long the browser takes to respond to user clicks, taps, and key presses. CLS (Cumulative Layout Shift) measures visual stability by tracking unexpected layout shifts during loading. Together, these three metrics form Google’s Core Web Vitals.
How much does website speed optimisation cost in Singapore?
Basic speed optimisation for a standard WordPress site typically costs between SGD 500 and SGD 2,000 as a one-time project. Comprehensive optimisation involving server configuration, CDN setup, database tuning, and ongoing monitoring may range from SGD 2,000 to SGD 8,000. Monthly website maintenance plans that include continuous performance monitoring generally cost between SGD 150 and SGD 500 per month.
Why is my website slow even after optimisation?
Persistent slowness after front-end optimisation usually points to server or infrastructure issues. Common causes include underpowered shared hosting, a database that needs optimisation, too many installed plugins generating queries, excessive third-party scripts, or geographic distance between the server and your visitors. Running tests with WebPageTest from multiple locations can help identify whether the issue is server-side or front-end.
Does website speed affect mobile SEO more than desktop?
Google uses mobile-first indexing, meaning it primarily evaluates the mobile version of your site for ranking purposes. Core Web Vitals thresholds apply equally to mobile and desktop, but mobile performance is often worse due to less powerful devices and variable network conditions. Because of this, mobile speed optimisation should be your primary focus.
What is lazy loading and should I use it?
Lazy loading defers the loading of images and other resources until the user scrolls near them. This reduces the initial page weight and speeds up the first meaningful paint. Native lazy loading is supported by all modern browsers using the loading=’lazy’ attribute. You should lazy load images below the fold but avoid lazy loading hero images or other above-the-fold content, as this can harm LCP.
How often should I audit my website speed?
For most businesses, a comprehensive speed audit should be conducted quarterly. Monitor Core Web Vitals in Google Search Console monthly. Additionally, test page speed after any significant site change, such as adding new plugins, publishing large content pages, or updating the theme. Regular monitoring ensures that performance does not degrade as your site grows.
What are the best free tools for measuring website speed?
Google PageSpeed Insights provides the most relevant diagnostics because it uses Google’s own Core Web Vitals thresholds. Google Search Console tracks real-user performance over time. WebPageTest offers detailed waterfall analysis and multi-location testing. Chrome DevTools Lighthouse provides comprehensive lab audits. Together, these four free tools cover virtually every performance testing need.
Does hosting location matter for Singapore websites?
Yes, hosting location has a direct and measurable impact on speed for Singapore audiences. A server located in Singapore typically delivers content 100 to 250 milliseconds faster per request than a server in the United States or Europe. For a page requiring 20 to 30 requests, this difference compounds into a noticeable delay. Hosting in Singapore or using a CDN with Singapore edge servers is strongly recommended.