Outline of Redis series of articles

Follow Lao Wan to learn Redis


foreword

Having been engaged in development work for so long, many core technologies are actually limited to the basic use in daily development work, and there is no complete summary research. One of the goals of this year is to complete a series of blogs on several technology stacks, and systematically summarize the knowledge system. The current plan is to start with Redis.


Outline of Redis series of articles

1. Characteristics and mechanism

  1. Introduction to Redis
  2. Redis data structure
  3. Redis persistence mechanism
  4. Redis expired key deletion strategy
  5. Redis cache elimination strategy
  6. Is Redis single-threaded or multi-threaded?
  7. Introduction to multiplexing mechanism in Redis
  8. Reasons for Redis high performance
  9. Use of Redis secondary index (Secondary indexing)
  10. Introduction to Redis Binary Arrays
  11. Redis collection objects use
  12. Redis monitoring mechanism Watch
  13. Introduction to Redis transactions

2. Installation and deployment

  1. Redis installation and deployment
  2. Redis client tools and monitoring tools
  3. Redis master-slave replication
  4. Redis Sentinel Mechanism Sentinel
  5. Detailed explanation of Redis cluster Cluster
  6. Redis monitor
  7. Redis slow log query

3. Use actual combat

  1. Summary of Redis usage scenarios
  2. Redis cache avalanche, cache penetration, cache breakdown introduction
  3. Integrating the use of Redis in Spring Boot
  4. Use of Lua scripts in Redis
  5. Redis connection tool selection
  6. Implementation of Bloom filter based on Redis
  7. Realize distributed auto-increment primary key based on Redis
  8. Distributed current limiting based on Redis
  9. Realize distributed lock based on Redis
  10. Publish and subscribe based on Redis
  11. Implementation of delayed queue based on Redis
  12. Redis cache consistency problem
  13. Redis hotspot key problem
  14. Thinking about Exception Handling in Redis Operation

Guess you like

Origin blog.csdn.net/w1014074794/article/details/129215740