Milestone Interview Question

Design a cache system for a high-traffic website.

Interview Answer

Anonymous

May 20, 2024

I would use a distributed cache system like Memcached or Redis, with a least recently used (LRU) eviction policy. I'd also implement a multi-level cache hierarchy and consider using a content delivery network (CDN).