On 1/28/07, Michael Daines <[EMAIL PROTECTED]> wrote: > I'm interested in how one can skip the database altogether, though. > This seems like something that must have come up here before? But > personally, I threw together a little number I like to call > DirectoryModel[1] that just keeps track of the files in a directory > for a (very) small comic-strip app[2]. I bet it needs some work!
I tend to use YAML::Store as a sort of poor-man's database for simple apps like that. There's also a module called 'fsdb' I used for a couple of projects which, IIRC, uses a one-file-per-object model for persistent storage. Running a full-featured client/server SQL database engine for applications that have only a handful of users is often overkill. -Lennon _______________________________________________ Camping-list mailing list [email protected] http://rubyforge.org/mailman/listinfo/camping-list

