C# Dictionary Performance
- by derek
I am using a Dictionary to store data, and will be caching it. I would like to avoid server memory issues, and have good performance by limiting the size of the Dictionary<, either in size or number of entries.
What is the best method of doing this? Is there another class I should be considering other than a Dictionary?