I'm creating a cache which is going to contain records in Delphi 2007.
Each record contains a String, 2 Dates and a value.
Type MyRecord = Record
Location : String;
Date1 : TDateTime;
Date2 : TDateTime;
Value : Double;
End;
There are no guarantees on what the maximum size of the cache will be.
It is highly likely that Location will have several entries for different dates
There are only 13 locations.
The cache needs to be searchable and will be in a performance critical place.
I was thinking of creating a 2 dimensional array for this structure with a sorted string list as an index. So when search I'd access the Stringlist to look up the index I need in the array with name value pairs. (Location = Index) Then I'd need loop through the items for each location to see if the value is in the cache matching both Date1 and Date2. If the value isn't in the cache I need to go and get it from a database and add it to the cache.
Something Like
Type MyRecord = Record
Date1 : TDateTime;
Date2 : TDateTime;
Value : Double;
End;
...
Cache: Array[1..13] of Array of MyRecord
Locations: TStringList;
as location would be in the string list.
Would this be an efficient structure to use for caching?