Redis learning journey (continuous update)

Description:

       The brain map of redis will be improved and updated in the later stage. In the later stage, we will write a special article introduction according to the headline, and will continue to be updated... 

table of Contents

  1. Getting started with redis
    • Introduction to redis
    • redis installation
    • redis deployment
  2. Master-slave synchronization
    1. Full synchronization
    2. Incremental synchronization
  3. Storage structure storage
    1. db
    2. dict
    3. dictht
    4. dictEntry
  4. type of data
    1. String
    2. Hash
    3. List
    4. Set
    5. ZSet
    6. HyperLogLog
    7. GEO
    8. Stream
  5. The underlying structure (encoding)
    1. int
    2. embstr
    3. raw
    4. ziplist
    5. linkedlist
    6. hashtable
    7. intset
    8. ship list
  6. Client
    1. jedis
    2. Redission
    3. Lettuce
  7. Memory elimination
    1. lru
    2. lfu
    3. random
    4. ttl
    5. no-eviction
  8. Event-driven (NIO model)
    1. file event
    2. time event
  9. Endurance
    1. aof
    2. rdb
  10. Affairs
  11. Partition
  12. Pipeline

 

redis learning brain map

 

Guess you like

Origin blog.csdn.net/qq_38428623/article/details/115017525