NAME
Form::Factory::Stasher::Memory - Remember things in a Perl hash
VERSION
version 0.022
SYNOPSIS
$c->session->{stash_stuff} ||= {};
my $stasher = Form::Factory::Stasher::Memory->new(
stash_hash => $c->session->{stash_stuff},
);
$stasher->stash(foo => { blah => 1 });
my $bar = $stasher->unstash('bar');
DESCRIPTION
Stashes things into a plain memory hash. This is useful if you already have a mechanism for remember things that can be reused via a hash.
ATTRIBUTES
stash_hash
The hash reference to stash stuff into. Defaults to an empty anonymous hash.
METHODS
stash
Stash the stuff given.
unstash
Unstash the stuff requested.
AUTHOR
Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2015 by Qubling Software LLC.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.