mirror of https://github.com/dunwu/db-tutorial.git
29 lines
578 B
Markdown
29 lines
578 B
Markdown
|
# redis 简介
|
|||
|
|
|||
|
**Redis 是一个基于内存的 key- value 数据库,也可用作缓存和消息代理。**
|
|||
|
|
|||
|
它支持多种数据类型:
|
|||
|
|
|||
|
- String
|
|||
|
- Hash
|
|||
|
- List
|
|||
|
- Set
|
|||
|
- Sorted Set
|
|||
|
- Bitmap
|
|||
|
- HyperLogLog
|
|||
|
|
|||
|
## 命令行
|
|||
|
|
|||
|
[Redis 官方命令行字典](https://redis.io/commands)
|
|||
|
|
|||
|
## 客户端
|
|||
|
|
|||
|
它提供了多种语言的客户端,如:Python,Ruby,PHP,Java,使用方便。
|
|||
|
|
|||
|
更多内容参考:[Redis 官方列出的 Redis 客户端列表](https://redis.io/clients)。
|
|||
|
|
|||
|
## 资源
|
|||
|
|
|||
|
[redis 官网](https://redis.io/)
|
|||
|
[redis github](https://github.com/antirez/redis)
|