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 c955b47d62
commit 25e2791ec3
3 changed files with 172 additions and 2 deletions

View File

@ -1346,6 +1346,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);
#if defined(__GNUC__)