Caching and CDN
1. ๐พ Caching and CDN¶
Caching Overview
Purpose: Improves system performance and efficiency Involves storing temporary data copies in cache
1.1. ๐ Common Caching Locations¶
1. Browser Caching
- Local Storage:
Stores data locally instead of server requests
Configurable via browser developer tools
Header Controls:
max-age
: Defines cache durationstale-if-error
: Fallback behaviorstale-while-revalidate
: Background refresh strategy
Metrics: \(Cache Ratio = Cache Hits \div (Cache Hits + Cache Misses)\)
2. Server Caching
- Storage Options:
- Server-side storage
- Separate cache servers
- In-memory (Redis) or disk storage
Caching Strategies:
-
Write-around:
Direct storage writing
- Best for cases where data freshness is critical
-
Write-through:
Simultaneous cache/storage updates
- Ensures data consistency
- Can be slower than write-around
-
Write-back:
Cache-first approach, then to permanent storage
Risk of data loss during crashes
Eviction Policies:
LRU
(Least Recently Used)FIFO
(First In First Out)LFU
(Least Frequently Used)
3. Database Caching
- Implementation:
- Internal database system
- External cache layer (Redis/Memcache)
Process Flow:
Check cache first
Return cached data if present
Execute query if cache miss
Store new results in cache
Optimal for read-heavy applications
Uses same eviction policies as server caching
4. CDN (Content Delivery Networks)
Purpose: Distributed server network for static content delivery
Request Flow:
- User requests resource
- Request redirects to nearest CDN server
- If cached, delivers content
- If not cached, fetches from origin server, caches, and delivers
Content Types:
JavaScript
HTML/CSS
Images/Videos
Distribution Strategies:
-
Pull-based:
- Automatic content pulling
- Ideal for frequently updated static content
- Self-managing updates
-
Push-based:
- Manual content distribution
- Best for large, infrequently updated files
- Requires active management
Control:
Cache-Control
header defines cache duration
1.2. ๐ When to Use Each Solution¶
Use CDN When
1. Content Type:
- Static assets delivery
- Images
- CSS files
- JavaScript files
- Video content
2. Requirements:
Global user base
High availability needs
- Origin server load reduction
Use Origin Server When
1. Dynamic Content:
Frequently changing data
Personalized user content
2. Real-time Processing:
Time-critical operations
- Up-to-date data access
3. Complex Operations:
Advanced server-side logic
Non-cacheable processes
1.3. Benefits Breakdown¶
CDN Advantages
-
Reduced Latency
- Geographically closer servers
- Faster content delivery
-
High Availability
- Better load handling
- Distributed traffic
-
Enhanced Security
- DDOS protection
- Security features included
Caching Advantages
-
Reduced Latency
- Quick data access
- Faster response times
-
Server Optimisation
- Lower resource usage
- Reduced database load
-
Better UX
- Faster page loads
- Smoother interactions