Skip to content

Commit

Permalink
bitmaps
Browse files Browse the repository at this point in the history
  • Loading branch information
wangjianxins committed Sep 6, 2019
1 parent c300da9 commit df3a792
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions src/main/java/com/wang/redis/Command/Command.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ public enum Command {

rpop,

//hash
/**
* hash
*/
hset,
hmset,
hmget,
Expand All @@ -51,7 +53,9 @@ public enum Command {
hkeys,
hvals,

//set
/**
* set
*/
sadd,
srem,
//个数
Expand All @@ -69,7 +73,9 @@ public enum Command {
//求俩个set的差
sdiff,

//zset
/**
* zset
*/
zadd,
//个数
zcard,
Expand All @@ -89,4 +95,13 @@ public enum Command {
//指定范围计算count,zcount key min max
zcount,


/**
* bitmaps
*/
//setbit key offset value
setbit,
//getbit key offset
getbit,

}

0 comments on commit df3a792

Please sign in to comment.