Skip to content

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 duration
  • stale-if-error: Fallback behavior
  • stale-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:

  1. Write-around:

    • โฉ Direct storage writing
    • Best for cases where data freshness is critical
  2. Write-through:

    • ๐Ÿ”„ Simultaneous cache/storage updates
    • Ensures data consistency
    • Can be slower than write-around
  3. 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: ๐Ÿ”„

  1. ๐Ÿ” Check cache first
  2. โœ… Return cached data if present
  3. โŒ Execute query if cache miss
  4. ๐Ÿ“ฅ 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: ๐Ÿ”„

  1. User requests resource
  2. Request redirects to nearest CDN server
  3. If cached, delivers content
  4. If not cached, fetches from origin server, caches, and delivers

Content Types: ๐Ÿ“

  • ๐Ÿ“ƒ JavaScript
  • ๐ŸŽจ HTML/CSS
  • ๐Ÿ“ท Images/Videos

Distribution Strategies: โš™

  1. Pull-based: โฌ‡

    • Automatic content pulling
    • Ideal for frequently updated static content
    • Self-managing updates
  2. 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 โญ

  1. Reduced Latency โšก

    • Geographically closer servers
    • Faster content delivery
  2. High Availability ๐Ÿ›ก

    • Better load handling
    • Distributed traffic
  3. Enhanced Security ๐Ÿ”’

    • DDOS protection
    • Security features included

Caching Advantages โœจ

  1. Reduced Latency โฉ

    • Quick data access
    • Faster response times
  2. Server Optimisation

    • Lower resource usage
    • Reduced database load
  3. Better UX ๐ŸŒŸ

    • Faster page loads
    • Smoother interactions