db-tutorial/docs/redis/README.md

29 lines
578 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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