Amethyst
view release on metacpan or search on metacpan
use strict;
use Data::Dumper;
use Amethyst::Store;
my $file = shift @ARGV;
my $store = new Amethyst::Store(
Source => $file,
);
my @keys = sort $store->keys;
print Dumper(\@keys);
foreach my $key (@keys) {
print "$key : " . Dumper($store->get($key));
}
( run in 1.741 second using v1.01-cache-2.11-cpan-39bf76dae61 )