Skip to content

Commit

Permalink
Add all module commands to proto (valkey-io#2389)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yury-Fridlyand authored Oct 9, 2024
1 parent d0da9b0 commit 862dd18
Show file tree
Hide file tree
Showing 11 changed files with 967 additions and 570 deletions.
101 changes: 2 additions & 99 deletions csharp/lib/AsyncClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,105 +129,8 @@ private enum RequestType
{
InvalidRequest = 0,
CustomCommand = 1,
Get = 2,
Set = 3,
Ping = 4,
Info = 5,
Del = 6,
Select = 7,
ConfigGet = 8,
ConfigSet = 9,
ConfigResetStat = 10,
ConfigRewrite = 11,
ClientGetName = 12,
ClientGetRedir = 13,
ClientId = 14,
ClientInfo = 15,
ClientKill = 16,
ClientList = 17,
ClientNoEvict = 18,
ClientNoTouch = 19,
ClientPause = 20,
ClientReply = 21,
ClientSetInfo = 22,
ClientSetName = 23,
ClientUnblock = 24,
ClientUnpause = 25,
Expire = 26,
HSet = 27,
HGet = 28,
HDel = 29,
HExists = 30,
MGet = 31,
MSet = 32,
Incr = 33,
IncrBy = 34,
Decr = 35,
IncrByFloat = 36,
DecrBy = 37,
HGetAll = 38,
HMSet = 39,
HMGet = 40,
HIncrBy = 41,
HIncrByFloat = 42,
LPush = 43,
LPop = 44,
RPush = 45,
RPop = 46,
LLen = 47,
LRem = 48,
LRange = 49,
LTrim = 50,
SAdd = 51,
SRem = 52,
SMembers = 53,
SCard = 54,
PExpireAt = 55,
PExpire = 56,
ExpireAt = 57,
Exists = 58,
Unlink = 59,
TTL = 60,
ZAdd = 61,
ZRem = 62,
ZRange = 63,
ZCard = 64,
ZCount = 65,
ZIncrBy = 66,
ZScore = 67,
Type = 68,
HLen = 69,
Echo = 70,
ZPopMin = 71,
Strlen = 72,
LIndex = 73,
ZPopMax = 74,
XRead = 75,
XAdd = 76,
XReadGroup = 77,
XAck = 78,
XTrim = 79,
XGroupCreate = 80,
XGroupDestroy = 81,
HSetNX = 82,
SIsMember = 83,
HVals = 84,
PTTL = 85,
ZRemRangeByRank = 86,
Persist = 87,
ZRemRangeByScore = 88,
Time = 89,
ZRank = 90,
Rename = 91,
DBSize = 92,
BRPop = 93,
HKeys = 94,
PfAdd = 96,
PfCount = 97,
PfMerge = 98,
BLPop = 100,
RPushX = 102,
LPushX = 103,
Get = 1504,
Set = 1517,
}

#endregion
Expand Down
Loading

0 comments on commit 862dd18

Please sign in to comment.