摘要:
一、哈希类型 ###1 hget,hset,hdel hget key field #获取hash key对应的field的value 时间复杂度为 o(1) hset key field value #设置hash key对应的field的value值 时间复杂度为 o(1) hdel key f 阅读全文
摘要:
一、redis介绍 参考博客:https://www.cnblogs.com/liuqingzheng/articles/17324381.html 1.1 介绍 基于键值对的存储系统:字典形式 多种数据结构:字符串,hash,列表,集合,有序集合 高性能,功能丰富 1.2 Redis特性(8个) 阅读全文