in reply to Re: RE: Global variables over many children
in thread Global variables over many children
which prints 123456 as you would expect, but as soon as I uncomment the tie, nothing is printed.#!/usr/bin/perl -w use MLDBM::Sync; use Fcntl qw(:DEFAULT); $tied_hash{list} = [1,2,3,4,5]; #my $sync_dbm_obj = tie %tied_hash, 'MLDBM::Sync', '/tmp/mldbmsync', O +_CREAT|O_RDWR, 0640; push @{$tied_hash{list}},6; @values = @{$tied_hash{list}}; print @values;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: RE: Global variables over many children
by blakem (Monsignor) on Dec 07, 2001 at 12:55 UTC | |
|
Re: Re: Re: RE: Global variables over many children
by perrin (Chancellor) on Dec 07, 2001 at 20:47 UTC | |
by dragoncoll (Initiate) on Oct 10, 2007 at 20:49 UTC | |
by perrin (Chancellor) on Oct 13, 2007 at 20:58 UTC |