[Redis] Introduction to redis

前言

Redis is a key-value storage system and a cross-platform non-relational database.
Redis is an open source, memory-based, distributed, optional persistent key-value storage database, and provides APIs in multiple languages.

存储数据类型

  • String: string
  • List: List
  • Set: Set
  • Sorted Set: ordered set
  • Hash: hash

Guess you like

Origin blog.csdn.net/s1441101265/article/details/114580623