I'm implementing a local cache to speed up DNS lookups (IP->hostname). The cache is loaded from a CSV file("1.1.1.1host.example.com") into a TStringList with two fields:
TStringList[0] := IPAddress;
TStringList[1] := HostName;
Since I will be querying TStringList via the IP, I obliously want the first field to be sorted:
TStringList.sorted := True;
Will that take care of it so that I can find faster with
IPResolved:=TStringList[TStringList.IndexOf('1.1.1.1'),1];
?
Thanks!
Disclaimer:
This won't answer you how to sort a string list or how to load your data into a string list. It will offer you to use a hash table, which is more efficient than using a string list for your purpose (40k name, value pairs with the search by name).
Alternative:
Since you have Delphi XE2, you can use generics
TDictionary
class. It will contain IP address as the key and host name as the value. In the following code is shown, how to fill a dictionary and how to search for the value (host name) by a given key (IP address):Extension:
The above solution you can then simply extend to use a structure to store more than only a host name, e.g. also a host location: