i seen from here 2 ways to redirect from a controller plugin ... i wonder which is more efficient. i am wondering in the 2nd method, it maybe slower because the response is created? what happens in the 1st method tho? it will redirect immediately?
$request->setModuleName('default')
->setControllerName('search')
->setActionName('form')
->setDispatched(false);
or
$this->_response->setRedirect('redirecturl');