kenpo has asked for the wisdom of the Perl Monks concerning the following question:
I believe this is really a question of printing 'strange' characters to the web browser since I can write $foo to a file. Also, I can tell the print is writing the entire object due to the amount of time it takes for the page to load...strange.
use Storable qw(nstore store_fd nstore_fd freeze thaw dclone);
$obj = Really::Big::thingy->new();
$foo = freeze $obj;
print $foo # I want to print this to the browser;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Writing frozen objects to a browser?
by ColtsFoot (Chaplain) on Sep 02, 2000 at 12:44 UTC | |
by kenpo (Initiate) on Sep 04, 2000 at 23:20 UTC | |
|
RE: Writing frozen objects to a browser?
by DrManhattan (Chaplain) on Sep 02, 2000 at 18:48 UTC | |
by kenpo (Initiate) on Sep 04, 2000 at 23:34 UTC |