missing command LRANGE
Hi, I like this project, but I need command LRANGE, I didn't find it..
It would also be cool if there were a way to set the value of a particular index.
The HSET, HGET and related commands should perform the same job if you pass numbers instead of string as keys
@symisc -- you mean just use a hash instead of the list type?
I'm talking about setting a value of a particular index which may appy to an associative array or hash but I agree that the list commands should be available.
@symisc -- I apologize but I don't think I follow. If I have a list of values (created by appending multiple values with LPUSH), I can use LINDEX to get the value stored at a given index. However I am not able to use HGET or HSET to access or modify the values in the list.
@coleifer Ah ok, you are right, it cannot be done using HSET and stuff but it should be easy to implement since vedis uses internally a hybrid datastructure named hashmap which act as a hashtable and a linked list at the same time and since lists entries have automatically assigned indexes, acces to the item should be O(1).