Re: Storing hashes & array's on disc

2001-06-26 Thread Brett W. McCoy
On Tue, 26 Jun 2001, Philip Peeters wrote: > I'm looking for the best way to store an array or hash in a file on disc, > so it can be picked up by another cgi. Check out the MLDBM module form CPAN. It basically ties a hash to a DBM file, and further allows you to store complex data structures t

Re: Storing hashes & array's on disc

2001-06-26 Thread Timothy Kimball
: I'm looking for the best way to store an array or hash in a file on disc, : so it can be picked up by another cgi. : : I'm currently storing to a file where every line contains an element : (and I know that every 6 lines contain a column in my array). But I find : this rather...hmmmnot so

Storing hashes & array's on disc

2001-06-26 Thread Philip Peeters
Hi, I'm looking for the best way to store an array or hash in a file on disc, so it can be picked up by another cgi. I'm currently storing to a file where every line contains an element (and I know that every 6 lines contain a column in my array). But I find this rather...hmmmnot so elegant