Closed vikneswaran20 closed 5 years ago
LRANGE command will get key and start and end value as input and return the list of values in that range.
list = [2,3,4,5] LRANGE 0 2 => [2, 3] LRANGE 0 -1 => [2,3,4]
It is similar to LRANGE in redis
Shall I raise a pull request for this command implementation?
merged
LRANGE command will get key and start and end value as input and return the list of values in that range.
list = [2,3,4,5] LRANGE 0 2 => [2, 3] LRANGE 0 -1 => [2,3,4]
It is similar to LRANGE in redis
Shall I raise a pull request for this command implementation?