2017-12-01 17:38:25 +08:00
|
|
|
|
# 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)
|
2018-06-19 17:39:28 +08:00
|
|
|
|
|
|
|
|
|
### Sentinel
|
|
|
|
|
|
|
|
|
|
- [官方文档](https://redis.io/topics/sentinel) 最全
|
|
|
|
|
- [官方文档翻译](http://ifeve.com/redis-sentinel/) 翻译,排版一般,新
|
|
|
|
|
- [官方文档翻译](http://redisdoc.com/topic/sentinel.html) 翻译有段时间了,但主要部分都包含,排版好
|
|
|
|
|
- [redis sentinel实战](https://blog.csdn.net/yanggd1987/article/details/78364667) 简要实战,能快速看出来是怎么回事
|
|
|
|
|
|
|
|
|
|
### redis client
|
|
|
|
|
|
|
|
|
|
- [spring-data-redis 官方文档 ](https://docs.spring.io/spring-data/redis/docs/1.8.13.RELEASE/reference/html/)
|
|
|
|
|
- [redisson 官方文档(中文,略有滞后)](https://github.com/redisson/redisson/wiki/%E7%9B%AE%E5%BD%95)
|
|
|
|
|
- [redisson 官方文档(英文)](https://github.com/redisson/redisson/wiki/Table-of-Content)
|
|
|
|
|
- [CRUG | Redisson PRO vs. Jedis: Which Is Faster? 翻译](https://www.jianshu.com/p/82f0d5abb002)
|
|
|
|
|
- [redis分布锁Redisson性能测试](https://blog.csdn.net/everlasting_188/article/details/51073505)
|
|
|
|
|
|