Internal Implementation : Linked-List
Redis Lists are simply lists of strings, sorted by insertion order. It is possible to add elements to a Redis List pushing new elements on the head (on the left) or on the tail (on the right) of the list.
The max length of a list is 2³² — 1 elements (4294967295, more than 4 billion of elements per list).