You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But now Redis is 7.0, developers want us to support some useful commands to make development easier. Just a few of us is not enough to implement so many command. To make this project better, we need your help!
Solution
If you want to implement one command, you can firstly open an issue for it (if it is not already created by others).
Here are the basic steps to implement a new command for your reference.
2. Implement the storage algorithm in types/redis_xx.cc (redis_hash.cc, redis_list.cc, redis_zset.cc, ...) and command parsing/executing class in commands/cmd_xx.cc (cmd_string.cc, cmd_set.cc, ...), you can refer other similar commands.
3. Add c++ and golang tests (unit tests, and integration tests if necessary).
Are you willing to submit a PR?
I'm willing to submit a PR!
The text was updated successfully, but these errors were encountered:
Motivation
Now Kvrocks only support most commands of Redis 4.0 version. Here are supported commands https://github.com/apache/incubator-kvrocks/wiki/Support-Commands.
But now Redis is 7.0, developers want us to support some useful commands to make development easier. Just a few of us is not enough to implement so many command. To make this project better, we need your help!
Solution
If you want to implement one command, you can firstly open an issue for it (if it is not already created by others).
Here are the basic steps to implement a new command for your reference.
2. Implement the storage algorithm in
types/redis_xx.cc
(redis_hash.cc
,redis_list.cc
,redis_zset.cc
, ...) and command parsing/executing class incommands/cmd_xx.cc
(cmd_string.cc
,cmd_set.cc
, ...), you can refer other similar commands.3. Add c++ and golang tests (unit tests, and integration tests if necessary).
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: