X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FManual%2FIntro.pod;h=bc1358db5d5515b6d7ecbe49ccd37b00a2bd9ef6;hb=dd25a19276c556cc6dd511c3fa374f0f9face0fd;hp=3a13a43bc01987b10d595b51405eca9d98534f6d;hpb=750b3d4c40ef7906597b7130e89bb79df57166eb;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index 3a13a43..bc1358d 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -242,6 +242,8 @@ The last of these, the stash, is a universal hash for sharing data among applica $c->res->output( $c->stash->{message} ); } +Note that the stash should be used only for passing data in an individual request cycle; it gets cleared at a new request. If you need to maintain more persistent data, use a session. + =head3 Actions A Catalyst controller is defined by its actions. An action is