Redis Lists are just lists of strings, arranged by addition request. It is feasible to add components to a Redis List pushing new components on the head (on the left>
or on the tail (on the right>
of the list. The LPUSH order embeds another component on the head, while RPUSH embeds another component on the tail.
redis 127.0.0.1:6379> LPUSH tutorials redis
(integer>
1
redis 127.0.0.1:6379> LPUSH tutorials techedhub
(integer>
2
redis 127.0.0.1:6379> LPUSH tutorials sdfh
(integer>
3
redis 127.0.0.1:6379> LRANGE tutorials 0 10
1>
"sdfh"
2>
"techedhub"
3>
"redis"