Why is there no way to increment hashes please?
Seems like this is one of the most basics features of Redis and its missing. Unless it is there but I am unable to find it in the documentation.
I definitely think that this is a must have feature.
Can't you do this?
redis.hincrby(hashkey, field, 1)
The documentation only describes a few Redis commands. Afaik all commands are supported and they all follow the same kind of implementation as documented in the README :)
That's great - I will test it soon.
I am wondering if other people are also getting discouraged from using the software because of this? Would it be worth while writing a full doc with all features?
Thanks for your help!
@adamgajzlerowicz the README states multiple times to check the commands reference for a complete list of possible commands. The only documented commands in the README are and should be the ones that are handled special / need some further explanation on how to use them. If you have the feeling that the README is not obvious enough, I'd be glad to receive a pull request to improve it further.
Most helpful comment
Can't you do this?