- Published on
Storing Lists in Redis
- Authors
- Name
- Milad E. Fahmy
- @miladezzat12
Insertion Commands
The Redis database internally stores List as a linked list. This linked list has a
head
andtail
. Read More
In computer science, a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next. It is a data structure consisting of a collection of nodes which together represent a sequence.
Insertion List Command
- LPUSH
This command is ued for inserting data from the
head
of array.
LPUHS key values...
- LRANGE
This command is used to get the elments from the are between range, if you want to get all elements in the array you can run this
LRANGE key 0 -1
LRANGE key start end
- LPOP
This commad is used to remove one element from the
head
LPOP key
- RPUSH
This command is used to insert data from the
tail
RPUSH key values...
- RPOP
This commad is used to remove elements from the
tail
Modification Commands
- LLEN This command is used to get the length of the list
LLEN key
- LSET This command is used to update the value at a given index
LSET key index value
- LINDEX This command is used to find the element at a particular index in the list.
LINDEX key index
- LPUSHX This command is used to insert elemnt at a head
LPUHSX key value
- LINSERT This command is used to inset element at specific place
LINSERT key before/after pivot value
The pivot is the value before which we need to insert the number.