2010-10-13, 08:53 PM
I'm curious, Fiel, what data format would you use for the datastore in memory? If the file's static you could just stick it all into a hash table (key = verb, tense, pronoun), but they're not great on sequential writing back to file. Or if it was bigger you could go fullblown database, like sql or something. Or then again, just do it up in a tree of some sort.

