|
|
|
|
|
by mattzito
3666 days ago
|
|
Well, as other posters have commented you sort of do, but since we let you use libraries and the like, you had lots of options: - sqlite - Storable (perl) - serialize some other data structure to disk - in-memory I seem to recall one or two people over the years who wanted to install a relational database as part of the code to store stuff - we were fine with that as long as you then showed all the right behaviors for dealing with relational databases (using transactions, catching errors, etc.) But most people read it in and store it in memory - there was only a few thousand rows. |
|