kodo has asked for the wisdom of the Perl Monks concerning the following question:
#!/opt/perl/bin/perl -w use IPC::Shareable; my %options = ( create => 1, exclusive => 0, mode => 0644, destroy => 0 ); tie %data, 'IPC::Shareable', 'data', { %options }; my $i = 0; while (1) { print $i++."\n"; %data = (); $data{'test'}{'test'} = $i; sleep 1; }
Edit kudra, 2002-10-27 Changed title
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: IPC::Shareable
by valdez (Monsignor) on Oct 24, 2002 at 10:15 UTC | |
by kodo (Hermit) on Oct 24, 2002 at 10:34 UTC | |
|
Re: IPC::Shareable -> Workarround
by kodo (Hermit) on Oct 24, 2002 at 13:55 UTC | |
by Aristotle (Chancellor) on Oct 25, 2002 at 23:31 UTC | |
|
UPDATE!
by kodo (Hermit) on Oct 24, 2002 at 13:07 UTC | |
by valdez (Monsignor) on Oct 24, 2002 at 13:33 UTC |