Database / REDIS
Mention few LIST operations in REDIS.
LPUSH adds an element to the beginning of a list.
RPUSH add an element to the end of a list.
LPOP removes the first element from a list and returns it.
RPOP removes the last element from a list and returns it.
LLEN gets the length of a list.
LRANGE gets a range of elements from a list.
More Related questions...