Method: Redis::Commands::Bitmaps#getbit
- Defined in:
- lib/redis/commands/bitmaps.rb
#getbit(key, offset) ⇒ Integer
Returns the bit value at offset in the string value stored at key.
21 22 23 |
# File 'lib/redis/commands/bitmaps.rb', line 21 def getbit(key, offset) send_command([:getbit, key, offset]) end |