Help language development. Donate to The Perl Foundation

Hash::Timeout zef:FRITH last updated on 2022-11-27

9585959645bb86195ad11145e54694e63e86e856/

Actions Status

NAME

Hash::Timeout - Role for hashes whose elements timeout and disappear

SYNOPSIS

use Hash::Timeout;

my %cookies does Hash::Timeout[0.5];
%cookies<user001> = 'id';
sleep 1;
say %cookies.elems; # prints 0

DESCRIPTION

Hash::Timeout provides a role that can be mixed with a Hash.

There's just one optional parameter, the timeout, which accepts fractional seconds and defaults to 1 hour.

AUTHOR

Fernando Santagata [email protected]

COPYRIGHT AND LICENSE

Copyright 2018 Fernando Santagata

This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.