Help for this page

Select Code to Download


  1. or download this
    $memd->set("mem_id_cache", \@array);
                               ^^^^^^^
    ...
    @tmp = $memd->get("mem_id_cache");
    ^^^^
    array
    
  2. or download this
    my @items_to_stored = qw( a b c );
    $memd->set("mem_id_cache", \@items_to_stored);
    my $stored_items = $memd->get("mem_id_cache");
    print "$_\n" for @$stored_items;