Skip to content

Latest commit

 

History

History
48 lines (25 loc) · 920 Bytes

list.rst

File metadata and controls

48 lines (25 loc) · 920 Bytes

表(List)

头元素和尾元素

头元素指的是列表左端/前端第一个元素,尾元素指的是列表右端/后端第一个元素。

举个例子,列表list包含三个元素:x, y, z,其中x是头元素,而z则是尾元素。

空列表

指不包含任何元素的列表,Redis 将不存在的key也视为空列表。