Initial implementation of BITPOS.

It appears to work but more stress testing, and both unit tests and
fuzzy testing, is needed in order to ensure the implementation is sane.
This commit is contained in:
antirez
2014-02-27 12:40:58 +01:00
parent addd4de9c1
commit 38c620b3b5
3 changed files with 171 additions and 1 deletions

View File

@ -1420,6 +1420,7 @@ void scriptCommand(redisClient *c);
void timeCommand(redisClient *c);
void bitopCommand(redisClient *c);
void bitcountCommand(redisClient *c);
void bitposCommand(redisClient *c);
void replconfCommand(redisClient *c);
void waitCommand(redisClient *c);