Skip to content

Commit

Permalink
Add bloom filter key-specs
Browse files Browse the repository at this point in the history
  • Loading branch information
fengyoulin authored and suxb201 committed Oct 11, 2023
1 parent ded936d commit 99725f9
Showing 1 changed file with 180 additions and 0 deletions.
180 changes: 180 additions & 0 deletions internal/commands/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -4559,4 +4559,184 @@ var redisCommands = map[string]redisCommand{
},
},
},
"BF.ADD": {
"BLOOM FILTER",
[]keySpec{
{
"index",
1,
"",
0,
"range",
0,
1,
0,
0,
0,
0,
},
},
},
"BF.CARD": {
"BLOOM FILTER",
[]keySpec{
{
"index",
1,
"",
0,
"range",
0,
1,
0,
0,
0,
0,
},
},
},
"BF.EXISTS": {
"BLOOM FILTER",
[]keySpec{
{
"index",
1,
"",
0,
"range",
0,
1,
0,
0,
0,
0,
},
},
},
"BF.INFO": {
"BLOOM FILTER",
[]keySpec{
{
"index",
1,
"",
0,
"range",
0,
1,
0,
0,
0,
0,
},
},
},
"BF.INSERT": {
"BLOOM FILTER",
[]keySpec{
{
"index",
1,
"",
0,
"range",
0,
1,
0,
0,
0,
0,
},
},
},
"BF.LOADCHUNK": {
"BLOOM FILTER",
[]keySpec{
{
"index",
1,
"",
0,
"range",
0,
1,
0,
0,
0,
0,
},
},
},
"BF.MADD": {
"BLOOM FILTER",
[]keySpec{
{
"index",
1,
"",
0,
"range",
0,
1,
0,
0,
0,
0,
},
},
},
"BF.MEXISTS": {
"BLOOM FILTER",
[]keySpec{
{
"index",
1,
"",
0,
"range",
0,
1,
0,
0,
0,
0,
},
},
},
"BF.RESERVE": {
"BLOOM FILTER",
[]keySpec{
{
"index",
1,
"",
0,
"range",
0,
1,
0,
0,
0,
0,
},
},
},
"BF.SCANDUMP": {
"BLOOM FILTER",
[]keySpec{
{
"index",
1,
"",
0,
"range",
0,
1,
0,
0,
0,
0,
},
},
},
}

0 comments on commit 99725f9

Please sign in to comment.