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 cbeaf17374
commit 1f8005ca09
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);