Database
appcache.txt
Associated article: Application-Level Data Caching
Tags: Database Design
Published executable files accompanying the article by Paul E. Boal in which he presents an application-level data-caching library designed such that continuous database access isn't necessary. Also see APPCACHE.ZIP.
Application-Level Data Caching by Paul E. Boal Listing One typedef vector<string> StringList; StringList q_fields = StringList(2); // Holds list of fields to query on StringList q_types = StringList(2); // Holds the data type of those fields string *demo_key = ...


