I am creating a web application and I some hashes loaded with data I want to make
available to all sessions, so I tried the command:
$Application->{mydata} = \%somehash;
but this chokes due to the fact that the $Application object is stored using the DBM
system which has a size limit of around 1000 bytes (it works fine if the hash in
question is less than 1kb).
Is there any way to have large data sets available to all sessions? Also, is
there a way to make sure this data is kept in memory (I assume the DBM system uses
disk files)?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]