深入了解Redis对象及数据结构综述

Posted ClawHub的技术分享

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了深入了解Redis对象及数据结构综述相关的知识,希望对你有一定的参考价值。


引言

Redis中每个键值对都是由对象组成:

  • 键总是一个字符串对象(string)
  • 值可以是字符串对象(string)、列表对象(list)、哈希对象(hash)、集合对象(set)、有序集合对象(zset)。

介绍

redis官方网站中对其数据类型的简单介绍:
An introduction to Redis data types and abstractions
摘抄一段关于redis key的介绍:

Redis keys
Redis keys are binary safe, this means that you can use any binary sequence as a key, from a string like "foo" to the content of a JPEG file. The empty string is also a valid key.
A few other rules about keys: