class Redis

def dbsize

Return the number of keys in the selected database.
def dbsize
  synchronize do
    @client.call(:dbsize)
  end
end