The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Data::Keys::E::Store::Mem - in memory storage

SYNOPSIS

my $dk = Data::Keys->new(
'extend_with' => 'Store::Mem',
);

DESCRIPTION

Stores key/values in memory.

PROPERTIES

mem_store

Hashref holding the key/values.

METHODS

get($key)

Return value of the $key from the "mem_store" hash.

set($key, $value)

Sets $value to $key of the "mem_store" hash.

AUTHOR

Jozef Kutej