TomoLink
CompaniesNetflixSystem DesignMemcached vs Redis
System Design
Mediumcaching-performance

Memcached vs Redis

30 minsmemcachedredis
30 mins
1 sections
memcached, redis

Overview

Popular interview question - what are the differences between Redis and Memcached?

The diagram above illustrates the key differences. The advantages of data structures make Redis a good choice for:

  • Recording the number of clicks and comments for each post (hash)
  • Sorting the commented user list and deduping the users (zset)
  • Caching user behavior history and filtering malicious behaviors (zset, hash)
  • Storing boolean information of extremely large data into small space. For example, login status, membership status. (bitmap)
Memcached vs Redis [Medium] | Netflix System_design | TomoLink