Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: getting a Perl application to start as quick as possible

by biosysadmin (Deacon)
on Jan 07, 2005 at 00:39 UTC ( [id://420138]=note: print w/replies, xml ) Need Help??


in reply to getting a Perl application to start as quick as possible

You could try storing the data read from spreadsheets using Storable:
use Storable; my %spreadsheet_data; if ( -f $storage_file_name ) { %spreadsheet_data = %{ retrieve( $storage_file_name ) }; } else { # read in all of your data into %spreadsheet_data store \%spreadsheet_data, $storage_file_name; }
Deriving what the $storage_file_name should be would be better left to someone who knows Windows better than I.

Cheers. :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://420138]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-03-29 09:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found