The Redis database differentiates three types of values. The value
types determine how Redis operates on the key/value pairs, not what
kind of data may be contained within. Each value type
may store generic R objects, binary blobs, or character strings.
The Redis value types are:string: A single value is associated with the key
list: A stack of values is associated with the key
set: A set of values is associated with the key.
Values of "list" and "set" types have available to them special stack and
set operations, respectively.