class Redis

def dbsize

Returns:
  • (Fixnum) -
def dbsize
  synchronize do |client|
    client.call [:dbsize]
  end
end