The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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