In our application, we have certain scenarios where we'd like to perform a redirect and pass a long string to the next controller/action. I'm familiar with both of these:
$this->_redirect('/controller/action?string=thisistheverylongstring);
But would like to avoid showing the user the string as part of the URL.
Throwing the string in $this->view doesn't help because after a redirect, a new request is created.
As far as I know, using $this->_helper->redirector() has the same problem.