I have an application that queries a database very regularly. It returns up to millions of strings, with a vast majority bieng repeats. I need to store all of these records in memory, and am trying to minimize the footprint.
My current design is to call GetHashCode() on every string, and then store the hash instead of string itself.
I then try to add it to a Dictionary<hashcode,string>() structure. I also keep a second dictionary of Dictionary<hashcode,count>() which is incremented\decremented as more entries use the string.
In the entries dispose method, i decrement the counter, and remove the strings from the dictionary if the usage drops to zero.
So, a few questions:
Is this a fools errand? Is there some datatype I could be using that would save me a lot of time\effort than working with this giant?
I want my string table to be thread safe (which it currently isn't). Is using ConcurrentDictinary my best bet?
Thanks in advance.