BITCOUNT key [start end]
Time complexity: O(N)
Count the number of set bits (population counting) in a string.
By default all the bytes contained in the string are examined. It is possible to specify the counting operation only in an interval passing the additional arguments start and end.
Like for the GETRANGE command start and end can contain negative values in order to index bytes starting from the end of the string, where -1 is the last byte, -2 is the penultimate, and so forth.
Non-existent keys are treated as empty strings, so the command will return zero.
The number of bits set to 1.
redis> SET mykey "foobar"
redis> BITCOUNT mykey
redis> BITCOUNT mykey 0 0
redis> BITCOUNT mykey 1 1
Using the command this is trivial to accomplish, identifying every day with a small progressive integer. For instance day 0 is the first day the application was put online, day 1 the next day, and so forth.
Every time a user performs a page view, the application can register that in the current day the user visited the web site using the SETBIT command setting the bit corresponding to the current day.
Later it will be trivial to know the number of single days the user visited the web site simply calling the command against the bitmap.
A similar pattern where user IDs are used instead of days is described in the article called "Fast easy realtime metrics using Redis bitmaps".
In the above example of counting days, even after 10 years the application is online we still have just bits of data per user, that is just 456 bytes per user. With this amount of data is still as fast as any other O(1) Redis command like GET or .
- Taking a separated key that is incremented every time the bitmap is modified. This can be very efficient and atomic using a small Redis Lua script.