Redis学习教程

      Redis是一个开源的使用ANSI C语言编写、遵守BSD协议、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。它通常被称为数据结构服务器,因为值(value)可以是 字符串(String), 哈希(Map), 列表(list), 集合(sets) 和 有序集合(sorted sets)等类型。


快速入门教程:http://www.runoob.com/redis/redis-tutorial.html

中文官网:http://redis.cn/

英文官网:https://redis.io/

进阶教程+python接口:https://piaosanlang.gitbooks.io/redis/content/index.html

redis命令快速查找手册:http://doc.redisfans.com/

redis python 官网:https://github.com/andymccurdy/redis-py


【Problem】

各种value的用途:https://blog.csdn.net/wuseyukui/article/details/75494155

基数统计hyperloglog:https://blog.csdn.net/terence1212/article/details/53543801



猜你喜欢

转载自blog.csdn.net/qccz123456/article/details/81000479