al-World Example
A media company publishes 200 articles daily across 12 subsites using WordPress multisite. Monthly visitors: 2 million. Peak traffic during breaking news: 5,000 concurrent visitors.
Their stack on a single SG server:
- Nginx as reverse proxy + cache
- PHP-FPM with 100 static child processes
- MariaDB with 45GB InnoDB buffer pool
- Redis for object cache (hits: 95%)
- Elasticsearch for search (100,000+ queries/day)
- Varnish for full-page cache
Results: 400ms average page load time, handles 10,000 concurrent visitors without degradation, 99.99% uptime.
Scaling Signal – When to Go Beyond Tier 3
At this level, you are likely hitting bandwidth limits (50Mbps CN2) before CPU limits. Solutions:
- Add a second SG/KL server and load balance
- Upgrade bandwidth with RakSmart (contact support for 100Mbps, 200Mbps options)
- Move database to a separate raksmart.com/cps/6509″ target=”_blank” rel=”noopener”>dedicated server
Horizontal Scaling: Beyond a Single Server
When a single server is not enough, it is time to scale horizontally.
Architecture 1: Web + Database Separation
Separate the web server (PHP) from the database server (MariaDB/MySQL).
Components:
- Web server: SG dual Xeon, runs Nginx + PHP-FPM
- Database server: KL dual Xeon, runs MariaDB with 64GB buffer pool
- Cache server: HK server, runs Redis
Benefits: Database queries don’t compete with PHP for CPU. Each server can be tuned independently.
Architecture 2: Load-Balanced Web Servers
For high-traffic sites, run multiple web servers behind a load balancer.
Components:
- Load balancer: RakSmart VPS running HAProxy or Nginx
- Web servers (2-10): SG or HK servers running Nginx + PHP-FPM
- Database server: KL server (single master, or master-master replication)
- Session storage: Redis cluster
Traffic flow:
text
Internet → Load Balancer → Web Server 1 → Database
→ Web Server 2 → Database
→ Web Server 3 → Database
Architecture 3: Geographic Distribution
For a global audience, deploy WordPress across multiple RakSmart data centers.
Components:
- SG server: Serves Southeast Asia, Australia
- HK server: Serves China, Hong Kong, Taiwan
- TY server: Serves Thailand, Vietnam, Myanmar
- SV server: Serves North America
Use DNS-based load balancing (Route53, Cloudflare) to route visitors to the nearest data center.
Cost for a 3-Server Load-Balanced Cluster
- 1x Load balancer (SV VPS): $5/month
- 3x Web servers (HK at $59 each): $177/month
- 1x Database server (KL at $109): $109/month
- 1x Redis cache (SV VPS): $5/month
Total: $296/month for a cluster handling 5 million monthly visitors.
Conclusion: Scale Confidently with RakSmart
RakSmart’s product lineup covers every stage of WordPress growth. Start with the SV VPS for personal blogs. Move to the HK dedicated server for business sites. Upgrade to the SG dual Xeon for high-traffic deployments. And use horizontal scaling when you outgrow even that.
With enterprise-grade hardware, China-optimized CN2 networking, and flexible scaling options, RakSmart is the ideal platform for WordPress at any scale.


Leave a Reply