class Redis

def move(key, db)

Move a key to another database.
def move(key, db)
  synchronize do
    _bool @client.call(:move, key, db)
  end
end