-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
missing command LRANGE #8
Comments
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 |
@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). |
Hi, I like this project, but I need command
LRANGE
, I didn't find it..The text was updated successfully, but these errors were encountered: