Method: Redis::Distributed#getbit

Defined in:
lib/redis/distributed.rb

#getbit(key, offset) ⇒ Object

Returns the bit value at offset in the string value stored at key.



373
374
375
# File 'lib/redis/distributed.rb', line 373

def getbit(key, offset)
  node_for(key).getbit(key, offset)
end